.login-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}
.login-form h2 {
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
}
.form-control {
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
}
.btn-primary {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    background-color: #2575fc;
    border: none;
}
.btn-primary:hover {
    background-color: #1a5bbf;
}
.form-check-label {
    color: #555;
}
.form-text {
    text-align: center;
    margin-top: 15px;
}
.form-text a {
    color: #2575fc;
    text-decoration: none;
}
.form-text a:hover {
    text-decoration: underline;
}
h3
{
    font-size:18px;
    font-style:poppins;
    font-weight:bold;
}
.logout-btn {
    background-color: #dc3545; /* Red color */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.logout-btn:hover {
    background-color: #c82333; /* Darker red on hover */
}
.logout-btn i {
    margin-right: 8px; /* Space between icon and text */
}
.navbar {
    background-color: #007bff !important;
}
.navbar-brand, .nav-link {
    color: #fff !important;
}
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card-header {
    background-color: #007bff;
    color: #fff;
    border-radius: 10px 10px 0 0;
}
.attendance-progress {
    height: 20px;
    border-radius: 10px;
}
.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}
.show-password {
    margin-top: 0.5rem;
    cursor: pointer;
    color: #007bff;
    font-size: 14px;
}
.show-password:hover {
    text-decoration: underline;
}
/* Custom CSS for Student Dashboard */
body {
    background-color: #f8f9fa;
}

.card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-header {
    padding: 20px;
    border-radius: 10px 10px 0 0;
}

.card-body {
    padding: 20px;
}

.card-text {
    font-size: 1rem;
    color: #555;
}

.btn {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-success:hover {
    background-color: #218838;
}

.btn-warning:hover {
    background-color: #e0a800;
}

.btn-danger:hover {
    background-color: #c82333;
}
/* Custom CSS for Sidebar */
body {
    background-color: #f8f9fa;
}

.wrapper {
    display: flex;
    align-items: stretch;
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    background: #343a40;
    color: #fff;
    transition: all 0.3s ease;
}

#sidebar.active {
    margin-left: -250px;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #2c3e50;
    text-align: center;
}

#sidebar ul.components {
    padding: 20px 0;
}

#sidebar ul li a {
    padding: 10px 20px;
    font-size: 1.1rem;
    display: block;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

#sidebar ul li a:hover {
    background-color: #007bff;
}

#sidebar ul li a i {
    margin-right: 10px;
}

#content {
    width: 100%;
    min-height: 100vh;
    transition: all 0.3s ease;
}

#sidebarCollapse {
    margin: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }

    #sidebar.active {
        margin-left: 0;
    }
    
}
.column {
            background-color: #ffffff;
            border-radius: 10px;
            padding: 20px;
            margin: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .column:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
        }
        .column h3 {
            color: #333;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        .column p {
            color: #666;
            font-size: 1rem;
        }