/* MemberPress Directory Styles */
.mp-directory-wrapper {
    margin: 20px 0;
}

.mp-directory-title {
    margin-bottom: 10px;
    font-size: 24px;
}

.mp-directory-description {
    margin-bottom: 20px;
    color: #666;
}

.mp-directory-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.mp-directory-table thead {
    background-color: #f5f5f5;
}

.mp-directory-table th,
.mp-directory-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.mp-directory-table th {
    font-weight: 600;
    color: #333;
}

.mp-directory-table tbody tr:hover {
    background-color: #f9f9f9;
}

.mp-contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mp-email a {
    color: #0073aa;
    text-decoration: none;
}

.mp-email a:hover {
    text-decoration: underline;
}

.mp-directory-empty {
    padding: 20px;
    text-align: center;
    color: #666;
    font-style: italic;
}

@media (max-width: 768px) {
    .mp-directory-table {
        font-size: 14px;
    }
    
    .mp-directory-table th,
    .mp-directory-table td {
        padding: 8px;
    }
}