
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #333; /* Updated to dark theme */
            color: #f4f4f4; /* Light text color for contrast */
        }

        .header {
            background-color: #212121;
            color: #f4f4f4;
            padding: 10px 0;
            text-align: center;
        }
	.section {
	    background-color: #424242; /* Slightly lighter shade for sections */
	    padding: 20px;
	    margin: 20px auto; /* Centers the section with an automatic margin */
	    max-width: 80%; /* Limits the width to 80% of the viewport width */
	    border-radius: 8px;
	    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); /* Optional: Adds a subtle shadow for depth */
	}

	.section h2 {
	    color: #fff;
	    font-size: 1.0em; /* Smaller font size for h2 elements */
	}

	.section p {
	    color: #ccc; /* Slightly lighter text for readability */
	}
        /* Logo styling */
        .header img {
            max-width: 100%; /* Ensure logo is not too large */
            height: auto; /* Maintain aspect ratio */
            max-height: 100px; /* Adjust this value as needed */
        }

        .nav-bar {
            display: flex;
            justify-content: space-around; /* Center nav items */
            align-items: center;
            background-color: #333;
            padding: 0.5em 0;
            //width: 80%; /* Set width to 80% of the screen width */
            margin-left: auto; /* Center the nav bar */
            margin-right: auto; /* Center the nav bar */
        }

        .nav-bar a {
            color: white;
            text-decoration: none;
            padding: 0.5em 1em;
            transition: background-color 0.3s, color 0.3s;
        }


        .container {
            padding: 20px;
            min-height: 80vh;
        }
        

	.layout-table {
	    width: 100%;
	    border-collapse: collapse;
	}

	.layout-table .sidebar {
	    width: 250px; /* Adjust the width of the sidebar as needed */
	    vertical-align: top; /* Align the content to the top */
	    border-right: 1px solid #ddd; /* Thin elegant border */
	    border-left: 1px solid #ddd; /* Thin elegant border */
	}

	.layout-table .main-content {
	    vertical-align: top; /* Align the content to the top */
	    text-align: center; /* Center the content horizontally */
	}	
	
	/* member side bar */
	.sidebar {
	    width: 200px; /* Adjust as needed */
	}

	.vertical-menu {
	    list-style-type: none;
	    padding: 0;
	}

	.vertical-menu li a {
	    display: block;
	    padding: 10px;
	    text-decoration: none;
	    color: black; /* Adjust as needed */
	    background-color: #f4f4f4; /* Adjust as needed */
	    border-bottom: 1px solid #ddd; /* For a line between items */
	}

	.vertical-menu li a:hover {
	    background-color: #800000; /* Marron color */
	    color: #FFFFFF; /* White text color */
	}
	/* end member side bar */

        .footer {
            background-color: #212121;
            color: white;
            text-align: center;
            padding: 1em 0;
            position: relative;
            bottom: 0;
            width: 100%;
            /* z-index: -1; */
        }
	.footer a {
	    color: white; /* Ensures the link is white */
	    text-decoration: none;
	}

	.footer a:hover {
	    text-decoration: underline;
	}        
        .category-table {
            width: 100%;
            border-collapse: collapse;
        }

        .category-table td {
            border: 1px solid #ddd; /* Fine line for the table */
            padding: 8px;
            text-align: center;
        }

        .category-table img {
            width: 100%; /* Adjust as necessary */
            height: auto; /* Maintain aspect ratio */
        }

/* Link Styles */
a {
    color: #4CAF50; /* A light green color for links */
    text-decoration: none; /* Removes underline from links */
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}

a:hover, a:focus {
    color: #D2EAD2; /* A lighter shade for hover state */
    text-decoration: underline; /* Underline on hover for emphasis */
}

/* Styles for generic form */

.form-style {
    width: 60%;
    margin: 20px auto; /* Centers the form with some margin */
    border-collapse: collapse;
}

.form-style td {
    padding: 8px;
    text-align: center;
    border: none; /* Removes the border */
}

/* Optional: If you're using images in your form */
.form-style img {
    width: 100%; /* Adjust as necessary */
    height: auto; /* Maintain aspect ratio */
}


.form-style input[type="text"],
.form-style input[type="email"],
.form-style input[type="password"] {
    width: 50%; /* Adjust width of input fields */
    padding: 10px;
    margin: 5px auto; /* Centers the input fields */
    display: block; /* Ensures the inputs are block elements and respect the margin auto */
    box-sizing: border-box; /* Includes padding and border in the element's total width and height */
    border-radius: 4px; /* Rounded corners */
    border: 1px solid #ccc; /* Light grey border */
    background-color: #f4f4f4; /* Light background for the inputs */
    color: #333; /* Dark text for contrast */
}

.form-style button {
    background-color: #4CAF50; /* Green background */
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: block; /* Ensures button is a block element */    
    margin: 10px auto; /* Center the button */
    width: fit-content; /* Adjust width to fit the content */    
}

.form-style button:hover {
    background-color: #45a049;
}

.form-style label {
    display: block;
    margin: 10px auto;
    text-align: center;
}
/* end of form-style */

        
/* New multi-level menu styles */
.menu {
    background-color: #333;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-left: auto; /* Center the nav bar */
    margin-right: auto; /* Center the nav bar */
    z-index : 1000;
}

.menu ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    width: 100%; /* Ensure it takes full width */
    z-index : 1000;
}

.menu ul a:hover, .menu ul li:hover {
    background-color: #800000; /* Maroon background */
    color: white; /* White text for better visibility */
    z-index : 1000;
}
.menu ul li a:active {
    background-color: purple; /* background on click */
    z-index : 1000;
}
.menu ul li {
    position: relative;
        flex: 1; /* Distribute space evenly */
    text-align: center; /* Center the text in each li */
    z-index : 1000;
}

.menu ul li a {
    display: block;
    padding: 10px;
    color: white;
    text-decoration: none;
    z-index : 1000;
}

/* Style the submenus */
.menu ul li ul {
    position: absolute;
    display: none;
    flex-direction: column;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index : 1000;
}

.menu ul ul li {
    width: max-content;
    min-width: 100%;
    max-width: 200px;
    z-index : 1000;
}

.menu ul ul li a {
    color: black;
    z-index : 1000;
}

.menu ul a:hover {
    background-color: #800000;
    z-index : 1000;
}

.menu ul li:hover > ul {
    display: flex; /* Show submenus on hover */
    z-index : 1000;
}

/* Style the third-level submenu */
.menu ul ul ul {
    top: 0;
    left: 100%;
    z-index : 1000;
}

/* Media query for mobile screens */
@media (max-width: 768px) {
    .menu ul {
	    list-style: none;
	    display: flex;
	    flex-wrap: wrap;
	    padding: 0;
	    margin: 0;
        flex-direction: row;  /* Stack menu items horizontally */
    }

    .menu ul li {
        flex: none; /* Remove flex from li to allow natural width */
        width: auto; /* Full width for each menu item */
    	position: relative; /* Required for z-index to work */
	z-index: 1; /* Default stack order */        
    }

    .menu ul li:hover {
	    z-index: 2; /* Higher stack order on hover */
    }

    .menu ul ul {
        position: static; /* Adjust position for dropdown */
    }

    .menu ul ul li {
        width: 100%; /* Full width for dropdown items */
    }

	.menu ul li ul {
	    position: absolute;
	    display: none;
	    flex-direction: column;
	    background-color: #f9f9f9;
	    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	    width: auto;
	}
	
    .menu ul ul li a {
        white-space: normal; /* Allow text wrapping for longer texts */
    }
}

.form-group {
    margin-bottom: 15px; /* Space between form groups */
}

.form-group label {
    display: block; /* Ensures the label is on a new line */
    margin-bottom: 5px; /* Space between label and input */
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%; /* Full width */
    padding: 8px; /* Padding inside inputs */
    margin-bottom: 10px; /* Space after each input */
    border: 1px solid #ddd; /* Styling the border */
    border-radius: 4px; /* Rounded corners for the inputs */
}

.form-group textarea {
    height: 100px; /* Height for textareas */
    resize: vertical; /* Allow only vertical resize */
}

/* Styling for the image previews */
.image-preview-container img {
    max-width: 100px; /* Adjust as needed */
    max-height: 100px; /* Adjust as needed */
    margin: 5px;
    border: 1px solid #ddd; /* Optional border for images */
    display: inline-block; /* Images are displayed in a line */
}

/* Styling for the image preview table */
.preview-table {
    border-collapse: collapse;
    width: 100%; /* Table takes full width of the container */
}

.preview-table td {
    padding: 5px; /* Spacing around each image */
    text-align: center;
    border: 1px solid #ddd; /* Optional border for table cells */
}

.prompt-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 columns */
    gap: 10px; /* Spacing between images */
    margin-bottom: 20px; /* Bottom margin */
}

.prompt-container img {
    width: 100%;
    height: auto;
    object-fit: cover; /* This will make sure images cover the cell entirely */
}
.prompt-image {
    /* Your specific styles for images with this class */
    max-width: 100%; /* This will ensure the image is not larger than its container */
    height: auto; /* This will maintain the aspect ratio of the image */
    border-radius: 4px; /* Example style: adds rounded corners to the image */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Example style: adds a subtle shadow for some depth */ 
}
.prompt-images img {
    /* max-width: 350px;  Adjust as needed */
    margin-right: 10px;
    /* Additional styling */
}

.prompt-details {
    /* Styles for the prompt details container */
}

.prompt-description, .prompt-output-preview {
    margin-bottom: 20px;
    /* Additional styling */
}

.add-to-cart {
    background-color: #008CBA; /* Example: Blue background */
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 20px; /* Rounder corners */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
    /* Additional styling */
}

.add-to-cart:hover {
    background-color: #005f73; /* Darker shade on hover */
}


.prompt-close-btn-container {
    position: absolute; /* This positions the close button relative to its first positioned (not static) ancestor element */
    top: 10px; /* This places the close button 10px from the top of the container */
    right: 10px; /* This places the close button 10px from the right of the container */
    z-index: 10; /* This ensures the close button is above other content that might be in the container */
}

.close-prompt-individual {
    /* Style for the close button */
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff4545; /* Example: red background color for the close button */
    color: white;
    border: none;
    border-radius: 0;
    cursor: pointer;
    padding: 0.5em 0.5em;
    font-weight: bold;
    font-size: 1em;
    /* z-index: 100;  Ensure it's above other content */
}

/* Ensure the container is positioned relative to allow absolute positioning inside it */
.prompt-container-individual {
    position: relative; /* Needed for absolute positioning of children */
    border: 2px solid green; 
}
.icon-container {
    padding-top: 10px; /* Adds a gap at the top */
    padding-bottom: 20px; /* Adds a gap at the bottom */
}
.icon-container:hover {
    background-color: grey; /* Blue color */
    color: red; /* grey text color */
}
/* Add a border to all divs for debugging */
/*
div {
    border: 1px solid red; 
}

.prompt-container, .prompt-container-individual, .prompt-details, .prompt-images {
    border: 1px solid red; 
}
.prompt-container {
    border: 1px solid blue; 
}


.prompt-details {
    border: 0px solid orange; 
}

.prompt-images {
    border: 0px solid purple; 
}
*/

