body {
    margin: 10px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

.container, .navbar, .header, .footer {
    border-radius: 20px;
}

.navbar {
    background-color: #333;
    padding: 10px;
    display: flex;
    justify-content: center;
}

.navbar-nav {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
}

/* Remove hover effect */
.navbar a:hover {
    color: white; /* Keep the text color the same */
    background: none; /* No background change */
    text-decoration: none; /* No underline */
}

.header {
    background-color: #2E3AA1;
    color: white;
    text-align: center;
    padding: 20px;
    margin: 10px;
}

.header img {
    border-radius: 50%;
}

.footer {
    background-color: #2E3AA1;
    color: white;
    text-align: center;
    padding: 10px;
    margin: 10px;
}

.search-container {
    display: flex;
    justify-content: center;
    margin: 20px;
}

.table-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.table {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    text-align: center;
}

.table th {
    background-color: #2E3AA1;
    color: white;
}

.carousel-item img {
    width: 100%;
    height: 300px;
    object-fit: contain;
}

/* Centering the login container */
.login-container {
    width: 400px;
    margin: auto;
    margin-top: 100px;
    padding: 30px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    text-align: center;
}

/* Styling for form inputs */
.login-container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Styling for the login button */
.login-container button {
    width: 100%;
    padding: 10px;
    background-color: #2E3AA1;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.login-container button:hover {
    background-color: #1d2b7a;
}

/* Mobile responsiveness */
@media (max-width: 500px) {
    .login-container {
        width: 90%;
    }
}
