/*
 Theme Name:   EduPress Child
 Theme URI:    https://edupress.thimpress.com/
 Description:  EduPress Child Theme
 Author:       ThimPress
 Author URI:   https://thimpress.com
 Template:     edu-press
 Version:      1.0.0
 Text Domain:   edu-press-child
*/
.school-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.school-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.gallery-item {
    text-align: center;
}
.gallery-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
/* page downloads */
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* General Page Styling */
.downloads-page {
    background: linear-gradient(135deg, #e6f0fa 0%, #ffffff 100%);
    padding: 40px 20px;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}

/* Heading */
.downloads-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Filter Section */
.search-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 1.1rem;
    color: #34495e;
    font-weight: 600;
}

.filter-dropdown {
    padding: 10px 15px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.filter-dropdown:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.3);
}

.filter-btn {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.filter-btn:hover {
    background: linear-gradient(45deg, #2980b9, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.filter-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.filter-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Table Container */
.table-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

/* Table Styling */
#downloads-table {
    width: 100%;
    border-collapse: collapse;
}

#downloads-table th,
#downloads-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

#downloads-table th {
    background: linear-gradient(45deg, #6a0dad, #8e44ad);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

#downloads-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

#downloads-table tbody tr:hover {
    background-color: #f1f1f1;
    transition: background-color 0.3s ease;
}

#downloads-table td {
    font-size: 1rem;
    color: #34495e;
}

.upload-time {
    color: #7f8c8d;
    font-size: 0.85rem;
}

/* Buttons */
.view-btn,
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.view-btn {
    background-color: #3498db;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.view-btn:hover {
    background-color: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.download-btn {
    background-color: #2ecc71;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.download-btn:hover {
    background-color: #27ae60;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.dashicons {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-filter {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-label,
    .filter-dropdown,
    .filter-btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .filter-btn {
        width: auto;
        align-self: center;
    }

    #downloads-table th,
    #downloads-table td {
        padding: 10px;
        font-size: 0.9rem;
    }
}

:root {
    --primary-color: #008080;
    --secondary-color: #006666;
}
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}
.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 25px;
}
.btn-primary:hover {
    background-color: var(--secondary-color);
}
.step-card {
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
    height: 100%;
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.section-title {
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}
.requirement-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}
.requirement-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
}