/* === COMMON STYLES === */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* === LOGIN PAGE STYLES === */
.login-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #4CAF50; /* Background color for login page */
}

.login-container {
    width: 300px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Adding shadow for depth */
    background: #ffffff; /* White background */
    text-align: center; /* Center align text within the container */
}

/* Input and Button styles for Login */
input[type="text"],
input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: calc(100% - 20px);
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #008CBA;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #005f7f;
}

/* === ADMIN PANEL STYLES === */
.admin-body {
    background-color: #f4f4f4; /* Different background for admin */
    padding-top: 70px; /* Space for fixed navbar */
}

.admin-container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

/* Navbar styles for Admin */
.navbar {
    display: flex; /* Use flexbox for horizontal layout */
    justify-content: space-around; /* Space out the buttons */
    align-items: center; /* Center vertically */
    background-color: #007bff; /* Navbar background color */
    padding: 15px; /* Padding */
    position: fixed; /* Fix the navbar to the top */
    top: 0; /* Position at the top */
    left: 0; /* Position on the left */
    right: 0; /* Position on the right */
    z-index: 1000; /* Ensure it’s above other content */
}

.navbar a {
    color: #fff; /* Link text color */
    text-decoration: none; /* No underline */
    padding: 10px 20px; /* Padding for links */
    border-radius: 5px; /* Rounded corners */
    transi
