
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.hero-section {
    background-image: url('../images/Directory-Banner.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-section .hero-section-content .hero-section-heading .top-main-heading .sub-heading {
    font-size: 20px;
    letter-spacing: 5px;
    font-weight: 600;
    color: #01411c;
}

/* Users Section Styles */


.users-heading-section {
    text-align: center;
    margin-bottom: 50px;
}

.users-heading {
    font-size: 32px;
    font-weight: 700;
    color: #01411c;
    margin-bottom: 15px;
}

.users-subheading {
    font-size: 16px;
    color: #6F7772;
    margin: 0;
}

/* Table Styles */
.table-container {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin: 0 auto;
    max-width: 800px;
}

.users-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Poppins', sans-serif;
}

.users-table thead {
    background: linear-gradient(135deg, #01411c 0%, #4B8C66 100%);
    color: white;
}

.users-table th {
    padding: 20px 25px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.users-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
}

.users-table tbody tr:hover {
    background-color: #f8f9fa;
}

.users-table tbody tr:last-child {
    border-bottom: none;
}

.users-table td {
    padding: 18px 25px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.users-table td:first-child {
    font-weight: 600;
    color: #01411c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .users-heading {
        font-size: 28px;
    }
    
    .users-subheading {
        font-size: 14px;
    }
    
    .users-table th,
    .users-table td {
        padding: 15px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .users-heading {
        font-size: 24px;
    }
    
    .users-subheading {
        font-size: 13px;
    }
    
    .users-table th,
    .users-table td {
        padding: 12px 15px;
        font-size: 13px;
    }
}
