body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.image{
    margin-top: 5%;
}

.login-container {
    margin-top: 50px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    color: #333;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    font-size: 14px;
    color: #555;
}

input[type="text"],
input[type="password"] {
    width: 95%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #54b948;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #008953;
}

.error-message {
    color: red;
    display: none;
    font-size: 14px;
    margin-top: 10px;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    background-color: #f4f4f4;
}

.dashboard-container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    position: relative;
}

#role-display {
    text-align: center;
    margin-bottom: 20px;
}

#warehouse-select {
    display: block;
    margin: 0 auto;
    padding: 10px;
    font-size: 16px;
}

/* Positioning the dropdown in the top middle */
label[for="warehouse-select"] {
    display: block;
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
}

.cal {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px;
    width: 60px; /* Adjust as needed */
    height: 60px; /* Adjust as needed */
}

.cal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
