html, body {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh /* Ensures the body takes the full height of the viewport */
}

main {
    flex: 1 0 auto; /* Ensures that the main content can grow to take available space */
}

footer {
    background-color: #C5A691;
    color: #000;
    width: 100%; /* Ensures footer stretches across the screen */
    position: relative;
    left: 0;
    bottom: 0;
    text-align: center;
}

footer a {
    color: #000 !important; /* Force black color */
    text-decoration: none;
}

footer a:hover {
    color: #333; /* Slightly darker on hover */
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #3D2E1E; /* Darker text for contrast */
    margin-bottom: 15px;
}

.welcome-description {
    max-width: 600px; /* Restrict width for better readability */
    margin: 0 auto; /* Centers the text block */
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
}

.dropdown-item{
    align-items: center;
    margin: 0 auto;
    display: flex;
}
.login-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-form {
    max-width: 400px;
    width: 100%;
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

main {
    padding: 40px 0; /* Adds space above and below the main content */
}



.header .container {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    padding: 2rem;
    border-radius: 10px;
    color: white; /* White text */
    text-shadow: 1px 1px 2px black; /* Adding a slight shadow to the text */
}

.error-message {
    color: red;
    font-weight: bold;
    margin-top: 5px;
    font-size: 14px;
}
body {
    font-family: 'Verdana', sans-serif;
}

/* Example for headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Verdana', sans-serif;
}

.product-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
/* webroot/css/admin.css */



