/* Zeed Members Plugin Styles */

/* Base Typography */
.zeed-form-container, .zeed-directory-container, .zeed-single-profile {
    color: var(--zeed-text, #555555);
    font-size: var(--zeed-font-size, 16px);
}

.zeed-form-container h1, .zeed-form-container h2, .zeed-form-container h3, .zeed-form-container h4,
.zeed-directory-container h1, .zeed-directory-container h2, .zeed-directory-container h3, .zeed-directory-container h4,
.zeed-single-profile h1, .zeed-single-profile h2, .zeed-single-profile h3, .zeed-single-profile h4 {
    color: var(--zeed-heading, #333333) !important;
}

.zeed-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: var(--zeed-bg, #fff);
    border-radius: var(--zeed-radius, 8px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.zeed-form-group {
    margin-bottom: 15px;
}

.elementor-widget-zeed_members_widget .zeed-form-group label,
.zeed-form-container .zeed-form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--zeed-heading, #333) !important;
}

.elementor-widget-zeed_members_widget .zeed-form-group input,
.elementor-widget-zeed_members_widget .zeed-form-group select,
.zeed-form-container .zeed-form-group input, 
.zeed-form-container .zeed-form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: var(--zeed-radius, 4px) !important;
}

.elementor-widget-zeed_members_widget .zeed-btn,
.zeed-btn {
    background-color: var(--zeed-primary, #0073aa) !important;
    color: #fff !important;
    padding: 10px 20px;
    border: none;
    border-radius: var(--zeed-radius, 4px) !important;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
}

.elementor-widget-zeed_members_widget .zeed-btn:hover,
.zeed-btn:hover {
    background-color: var(--zeed-primary-hover, #005177) !important;
}

.zeed-alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: var(--zeed-radius, 4px);
}
.zeed-alert-info { background: #e0f7fa; color: #006064; }
.zeed-alert-success { background: #e8f5e9; color: #1b5e20; }
.zeed-alert-error { background: #ffebee; color: #b71c1c; }
.zeed-alert-warning { background: #fff3e0; color: #e65100; }

/* Directory Grid */
.zeed-grid .zeed-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.zeed-member-card {
    background: var(--zeed-bg, #fff);
    border: 1px solid #eee;
    padding: 15px;
    border-radius: var(--zeed-radius, 8px);
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.zeed-member-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.zeed-member-card h4 {
    margin: 0 0 10px;
    font-size: calc(var(--zeed-font-size, 16px) * 1.125);
}

.zeed-badge, .zeed-yr-badge {
    background: #f0f0f0;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: calc(var(--zeed-font-size, 16px) * 0.75);
    color: var(--zeed-text, #555);
    display: inline-block;
    margin-bottom: 15px;
}

/* Single Profile */
.zeed-single-profile {
    background: var(--zeed-bg, #fff);
    border-radius: var(--zeed-radius, 8px);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.zeed-cover {
    height: 250px;
    background-color: #e0e0e0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.zeed-profile-img {
    position: absolute;
    bottom: -50px;
    left: 30px;
    width: 120px;
    height: 120px;
    border: 4px solid #fff;
    border-radius: 50%;
    overflow: hidden;
    background: #eee;
}

.zeed-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zeed-profile-details {
    padding: 70px 30px 30px;
}

.zeed-profile-details h2 { margin-top: 0; }

.zeed-contact-info ul {
    list-style: none;
    padding: 0;
}
.zeed-contact-info ul li { margin-bottom: 10px; }

.zeed-social-btn {
    display: inline-block;
    background: #eee;
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;
    color: var(--zeed-heading, #333);
    margin-right: 5px;
    margin-bottom: 5px;
}
.zeed-social-btn:hover { background: #ddd; }

/* Filters container */
.zeed-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.zeed-filters input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
