/* --- Entry List Section --- */
.entry-list-section {
    background-color: #f8fafc;
    padding-top: 200px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.entry-list-container {
    max-width: 1440px;
    padding-left: 160px;
    padding-right: 160px;
    margin: 0 auto;
}

.entry-list-header {
    margin-bottom: 40px;
}

.entry-list-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 42px;
    color: #06142d;
    margin-bottom: 5px;
}

.text-green {
    color: #159C33;
}

.entry-list-header .sub-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #64748b;
    margin-bottom: 2px;
}

.entry-list-header .note {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #94a3b8;
    font-style: italic;
    margin-top: 0;
}

/* Filters & Search */
.entry-list-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.category-filters {
    display: flex;
    gap: 10px;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 50px;
}

.filter-pill {
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
}

.filter-pill.active {
    background-color: #159C33;
    color: white;
    box-shadow: 0 4px 12px rgba(21, 156, 51, 0.2);
}

.search-wrapper {
    position: relative;
    width: 320px;
}

.search-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
}

.search-input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border-radius: 50px;
    border: 1px solid #f1f5f9;
    background: #f1f5f9;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #06142d;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    background: white;
    border-color: #159C33;
    box-shadow: 0 0 0 4px rgba(21, 156, 51, 0.1);
}

/* Table Area */
.entry-table-wrapper {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.entry-table {
    width: 100%;
    border-collapse: collapse;
}

.entry-table thead th {
    background-color: #C6FFD3; /* Custom light green */
    padding: 20px 30px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #064e3b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.entry-table tbody td {
    padding: 20px 30px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.entry-table tbody tr:last-child td {
    border-bottom: none;
}

.participant-info .name {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #06142d;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.participant-info .gender {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #94a3b8;
}

.category-badge {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #475569;
}

.community-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.community-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #64748b;
}

.community-item i {
    font-size: 14px;
    width: 16px;
    color: #94a3b8;
}

.community-item.highlight i {
    color: #159C33;
}

.community-item.highlight span {
    color: #159C33;
    font-weight: 600;
}

.status-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background-color: #c19a6b;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pagination */
.table-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.showing-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #64748b;
}

.pagination {
    display: flex;
    gap: 10px;
    align-items: center;
}

.page-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: #f1f5f9;
}

.page-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.page-btn.active {
    background-color: #159C33;
    color: white;
    box-shadow: 0 4px 10px rgba(21, 156, 51, 0.2);
}

.page-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 11px;
}

.page-nav:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.page-dots {
    color: #94a3b8;
    padding: 0 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .entry-list-container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 1024px) {
    .entry-list-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .search-wrapper {
        width: 100%;
    }
    .entry-table-wrapper {
        overflow-x: auto;
    }
    .entry-table {
        min-width: 900px;
    }
}

@media (max-width: 768px) {
    .entry-list-section {
        padding-top: 30px !important;
    }
    .entry-list-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .entry-list-header h2 {
        font-size: 30px;
    }
    .entry-list-header .sub-title {
        font-size: 14px;
    }
    .entry-list-header .note {
        font-size: 11px;
    }
}

@media (max-width: 640px) {
    .entry-list-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .category-filters {
        overflow-x: auto;
        width: 100%;
        padding-bottom: 10px;
    }
    .filter-pill {
        white-space: nowrap;
    }
}
