.notices-container {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: center; /* Vertically centers items */
}

.notices-title {
    font-weight: bold;
    font-size: 1.25rem;
    margin-right: 1rem; /* Adds spacing between title and links */
}

.notices-links {
    display: flex;
    gap: 0.5rem; 
}

.notice a {
    text-decoration: none;
    color: #007bff;
}

.notice a:hover {
    text-decoration: underline;
}



.slider {
        position: relative;
        width: 100%;
        max-width: 1000px;
        margin: auto;
        overflow: hidden;
        border: 2px solid #ddd;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    
    .slides {
        display: flex;
        transition: transform 0.6s ease-in-out;
    }
    
    .slide {
        min-width: 100%;
        box-sizing: border-box;
    }
    
    .slide-img {
        width: 100%;
        max-height: 450px;
        display: block;
        border-radius: 10px;
    }
    
    .navigation {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        pointer-events: none;
    }
    
    .nav-btn {
        background-color: rgba(0, 0, 0, 0.5);
        border: none;
        cursor: pointer;
        font-size: 24px;
        color: white;
        padding: 12px;
        border-radius: 50%;
        pointer-events: all;
        transition: background-color 0.3s;
    }
    
    .nav-btn:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }


    .results {
        display: flex;
        flex-direction: column;
        max-width: 800px; 
        margin: 0 auto;
    }
    .results h3 {
        margin-top: 8px;
        padding: 6px 8px;
        background-color: #ccc;
        border: 1px solid #ccc; 
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    }
    
    .result-item {
        display: flex;
        flex-direction: column; 
        align-items: center; 
        margin-bottom: 20px; 
        border: 1px solid #ccc; 
        border-radius: 8px; 
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); 
        padding: 20px; 
        background-color: #ffffff; 
         position: relative;
    }
    .printButton {
    position: absolute; /* Positioning the button */
    top: 10px; /* Distance from the top */
    right: 10px; /* Distance from the right */
    padding: 5px 10px; /* Button padding */
    font-size: 14px; /* Button font size */
    cursor: pointer; /* Pointer on hover */
    background-color: #007bff; /* Button color */
    color: white; /* Button text color */
    border: none; /* No border */
    border-radius: 4px; /* Rounded corners */
    }
    
    .printButton:hover {
        background-color: #0056b3; /* Darker color on hover */
    }
    .photo-cell {
        margin-bottom: 15px; 
    }
    
    .photo-cell .student-photo {
        min-width: 200px; 
        object-fit: cover; 
        border-radius: 50%; 
        border: 2px solid #ddd;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .student-info {
        background-color: #f8f8f8; 
        border-radius: 5px; 
        padding: 15px; 
        width: 100%; 
    }
    
    .info-row {
        padding: 10px; 
        border-radius: 4px; 
        width: 100%; 
    }
    
    .info-row:nth-child(odd) {
        background-color: #e0f7fa; 
    }
    
    .info-row:nth-child(even) {
        background-color: #ffffff; 
    }
    
    strong {
        color: #007BFF; 
    }
    
    /* Responsive adjustments */
    @media (max-width: 600px) {
        .student-photo {
            width: 100px; 
            height: 130px;
        }
    
        .result-item {
            padding: 10px; 
        }
    }
    
    /* Styles for the teacher cards */
.page-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
    color: #333;
}

.teachers-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.teacher-card {
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    background-color: #fff;
    transition: transform 0.3s;
}

.teacher-card:hover {
    transform: translateY(-10px);
}

.teacher-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.teacher-name {
    font-size: 1.5em;
    color: #007bff;
    margin-top: 10px;
}

.teacher-department {
    font-size: 1.2em;
    color: #666;
}

.teacher-qualification,
.teacher-email,
.teacher-phone {
    font-size: 1em;
    color: #555;
    margin: 5px 0;
    padding: 0 10px;
}

.teacher-card p {
    margin: 0;
}

@media (max-width: 600px) {
    .teachers-container {
        flex-direction: column;
        align-items: center;
    }
    .teacher-card {
        width: 100%;
        max-width: 350px;
    }
}



.login-container, .password-reset-container, .registration-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px; /* Added padding for better spacing */
    margin: 0 auto; /* Center the containers */
 
}

.image-container {
    height: 150px; /* Adjust height here */
    background-image: url('/images/icon.png'); /* Replace with your image URL */
    background-size: contain; 
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 20px; 
}

.options {
    text-align: center;
    margin-top: 15px;
}

.options a {
    color: #007bff;
    text-decoration: none;
}


.about-header {
    text-align: center;
    padding: 40px;
    background-color: #003366;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(3, 6, 176, 0.667);
}

.about-header h1 {
    margin: 0;
    font-size: 2.5em;
}

.section-title {
    color: #003366;
    font-size: 1.8em;
    margin-top: 30px;
    border-bottom: 2px solid #003366;
    padding-bottom: 10px;
}

.section {
    margin-top: 20px;
}

.section p {
    margin: 10px 0;
}

.list {
    margin: 15px 0;
    padding-left: 20px;
}

.list li {
    margin-bottom: 8px;
}

.dgtts-footer {
    background-color: #003366;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(3, 6, 176, 0.667);
}
.dgtts-footer p {
    color: #fff;
}
.dgtts-footer a {
    color: #ffd700;
    text-decoration: none;
}




#stats {
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.stat {
    font-size: 24px;
    margin: 15px 10px; /* Added horizontal margin for spacing */
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
    display: inline-block; /* Changed to inline-block for horizontal layout */
}

.stat:hover {
    background-color: #f0f0f0;
    color: #007bff;
    cursor: pointer;
}

.stat-icon {
    margin-right: 10px;
    font-size: 28px;
    color: #027942;
}

