/**
 * User Profile Tabbed - Complete Styling
 * Modern tabbed interface with AJAX loading
 */

/* ========== Main Container ========== */
.uwm-profile-tabbed {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* ========== Profile Header ========== */
.uwm-profile-header-tabbed {
    position: relative;
    background: #fff;
}

.uwm-profile-banner {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-color: #03968F;
}

.uwm-profile-header-content {
    position: relative;
    padding: 0 40px 30px;
    margin-top: -60px;
    display: flex;
    align-items: flex-end;
    gap: 30px;
    flex-wrap: wrap;
}

.uwm-profile-avatar-section {
    flex-shrink: 0;
}

.uwm-profile-avatar-large {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #fff;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.uwm-profile-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uwm-status-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #fff;
}

.uwm-status-online {
    background: #2ecc71;
}

.uwm-status-busy {
    background: #f39c12;
}

.uwm-status-offline {
    background: #95a5a6;
}

.uwm-profile-info-section {
    flex: 1;
    min-width: 300px;
}

.uwm-profile-name-large {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px;
}

.uwm-profile-tagline-text {
    font-size: 16px;
    color: #7f8c8d;
    margin: 0 0 15px;
    font-style: italic;
}

.uwm-profile-meta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.uwm-profile-rating-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.uwm-rating-number {
    font-size: 18px;
    font-weight: 700;
    color: #f39c12;
}

.uwm-rating-count {
    font-size: 14px;
    color: #7f8c8d;
}

.uwm-role-badge-display {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.uwm-role-provider {
    background: #e8f5f2;
    color: #03968F;
}

.uwm-role-client {
    background: #fef5e7;
    color: #F0A94C;
}

.uwm-rate-display-small {
    font-size: 16px;
    font-weight: 700;
    color: #2ecc71;
    padding: 6px 14px;
    background: #eafaf1;
    border-radius: 20px;
}

.uwm-profile-actions-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-left: auto;
}

/* ========== Tabs Navigation ========== */
.uwm-profile-tabs-nav {
    display: flex;
    background: #f8f9fa;
    border-bottom: 2px solid #e1e8ed;
    padding: 0 30px;
    gap: 5px;
    overflow-x: auto;
}

.uwm-tab-btn {
    position: relative;
    padding: 18px 24px;
    background: transparent;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #7f8c8d;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.uwm-tab-btn .dashicons {
    font-size: 18px;
}

.uwm-tab-btn:hover {
    color: #03968F;
    background: rgba(3, 150, 143, 0.05);
}

.uwm-tab-btn.active {
    color: #03968F;
    background: #fff;
}

.uwm-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #03968F;
}

.uwm-tab-count {
    display: inline-block;
    padding: 2px 8px;
    background: #03968F;
    color: #fff;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

/* ========== Content Layout with Sidebar ========== */
.uwm-profile-content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    padding: 30px 40px 40px;
}

/* ========== Tabs Content ========== */
.uwm-profile-tabs-content {
    position: relative;
    min-height: 400px;
    padding: 0;
}

.uwm-tab-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: none;
}

.uwm-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f4f6;
    border-top-color: #03968F;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.uwm-tab-content-wrapper {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== Overview Tab ========== */
.uwm-overview-grid {
    display: grid;
    gap: 30px;
}

.uwm-stats-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.uwm-stat-card {
    background: #fff;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.uwm-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.uwm-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.uwm-stat-primary .uwm-stat-icon {
    background: rgba(3, 150, 143, 0.1);
    color: #03968F;
}

.uwm-stat-info .uwm-stat-icon {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.uwm-stat-success .uwm-stat-icon {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.uwm-stat-warning .uwm-stat-icon {
    background: rgba(240, 169, 76, 0.1);
    color: #F0A94C;
}

.uwm-stat-content {
    flex: 1;
}

.uwm-stat-label {
    display: block;
    font-size: 13px;
    color: #7f8c8d;
    margin-bottom: 4px;
}

.uwm-stat-value {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
}

.uwm-quick-info-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
}

.uwm-quick-info-section h3 {
    margin: 0 0 16px;
    font-size: 18px;
    color: #2c3e50;
}

.uwm-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.uwm-info-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e1e8ed;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.uwm-info-list li:last-child {
    border-bottom: none;
}

.uwm-info-label {
    font-weight: 600;
    color: #7f8c8d;
}

.uwm-info-value {
    color: #2c3e50;
    font-weight: 600;
}

/* ========== Bio Tab ========== */
.uwm-bio-content {
    max-width: 900px;
}

.uwm-tagline-box {
    background: linear-gradient(135deg, #03968F 0%, #02b3aa 100%);
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: center;
}

.uwm-tagline-large {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.uwm-bio-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 24px;
}

.uwm-bio-box h3 {
    margin: 0 0 16px;
    font-size: 20px;
    color: #2c3e50;
}

.uwm-bio-text {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
}

.uwm-languages-box {
    background: #fff;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    padding: 24px;
}

.uwm-languages-box h3 {
    margin: 0 0 16px;
    font-size: 18px;
    color: #2c3e50;
}

.uwm-languages-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.uwm-language-tag {
    padding: 8px 16px;
    background: rgba(3, 150, 143, 0.1);
    color: #03968F;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* ========== Gallery Tab ========== */
.uwm-gallery-grid-container {
    width: 100%;
}

.uwm-gallery-grid-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.uwm-gallery-item-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.uwm-gallery-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.uwm-gallery-item-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.uwm-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 150, 143, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.uwm-gallery-item-card:hover .uwm-gallery-overlay {
    opacity: 1;
}

.uwm-gallery-view {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #03968F;
    font-size: 24px;
    transition: all 0.3s ease;
}

.uwm-gallery-view:hover {
    transform: scale(1.1);
}

/* ========== Stories Tab ========== */
.uwm-stories-grid-container {
    width: 100%;
}

.uwm-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.uwm-story-card-full {
    background: #fff;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.uwm-story-card-full:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.uwm-story-header {
    margin-bottom: 16px;
}

.uwm-story-header h3 {
    margin: 0 0 8px;
    font-size: 20px;
    color: #2c3e50;
}

.uwm-story-date {
    font-size: 13px;
    color: #7f8c8d;
}

.uwm-story-content {
    font-size: 15px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 16px;
}

.uwm-story-footer {
    padding-top: 16px;
    border-top: 1px solid #e1e8ed;
}

.uwm-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #03968F;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.uwm-read-more-btn:hover {
    color: #027871;
    gap: 10px;
}

/* ========== Reviews Tab ========== */
.uwm-reviews-container {
    max-width: 900px;
}

.uwm-reviews-list-full {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.uwm-review-card-full {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e1e8ed;
}

.uwm-review-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.uwm-reviewer-info-full {
    display: flex;
    align-items: center;
    gap: 12px;
}

.uwm-reviewer-avatar-full {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.uwm-review-rating-stars {
    margin-top: 4px;
}

.uwm-review-date-full {
    font-size: 13px;
    color: #7f8c8d;
}

.uwm-review-text-full p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #34495e;
}

/* ========== Stars Display ========== */
.uwm-stars-display {
    display: inline-flex;
    gap: 2px;
}

.uwm-stars-display .dashicons {
    width: 18px;
    height: 18px;
    font-size: 18px;
}

.uwm-stars-display .dashicons-star-filled {
    color: #f39c12;
}

.uwm-stars-display .dashicons-star-empty {
    color: #dfe6e9;
}

/* ========== Empty State ========== */
.uwm-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.uwm-empty-state .dashicons {
    font-size: 64px;
    color: #dfe6e9;
    width: 64px;
    height: 64px;
}

.uwm-empty-state p {
    font-size: 16px;
    color: #7f8c8d;
    margin: 20px 0;
}

/* ========== Buttons ========== */
.uwm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.uwm-btn-primary {
    background: #03968F;
    color: #fff;
}

.uwm-btn-primary:hover {
    background: #027871;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 150, 143, 0.3);
}

.uwm-btn-call {
    background: #2ecc71;
    color: #fff;
}

.uwm-btn-call:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.uwm-btn-secondary {
    background: #F0A94C;
    color: #fff;
}

.uwm-btn-secondary:hover {
    background: #e8963b;
}

.uwm-btn-icon {
    padding: 10px;
}

.uwm-btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

/* ========== Lightbox ========== */
.uwm-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.uwm-lightbox-overlay.show {
    opacity: 1;
}

.uwm-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.uwm-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
}

.uwm-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    color: #2c3e50;
}

/* ========== Profile Sidebar ========== */
.uwm-profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.uwm-sidebar-card {
    background: #fff;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.uwm-sidebar-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.uwm-sidebar-card .uwm-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(3, 150, 143, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #03968F;
    font-size: 24px;
}

.uwm-sidebar-card h3 {
    margin: 0 0 16px;
    font-size: 18px;
    color: #2c3e50;
    text-align: center;
}

.uwm-sidebar-card p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0 0 16px;
    text-align: center;
}

/* Rate Card */
.uwm-rate-card-sidebar {
    background: linear-gradient(135deg, #03968F 0%, #02b3aa 100%);
    border: none;
    color: #fff;
}

.uwm-rate-card-sidebar .uwm-card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.uwm-rate-card-sidebar h3 {
    color: #fff;
}

.uwm-rate-display-large {
    text-align: center;
    margin: 20px 0;
}

.uwm-rate-amount {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.uwm-rate-period {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
}

/* Stats Card */
.uwm-sidebar-stats-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.uwm-sidebar-stats-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f3f5;
}

.uwm-sidebar-stats-list li:last-child {
    border-bottom: none;
}

.uwm-sidebar-stats-list .uwm-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(3, 150, 143, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #03968F;
    font-size: 20px;
    flex-shrink: 0;
}

.uwm-sidebar-stats-list .uwm-stat-info {
    flex: 1;
}

.uwm-sidebar-stats-list .uwm-stat-label {
    display: block;
    font-size: 12px;
    color: #7f8c8d;
    margin-bottom: 2px;
}

.uwm-sidebar-stats-list .uwm-stat-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
}

/* Share Buttons */
.uwm-share-buttons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.uwm-share-btn-sidebar {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e1e8ed;
    background: #fff;
    cursor: pointer;
}

.uwm-share-btn-sidebar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.uwm-share-facebook {
    color: #1877f2;
    border-color: #1877f2;
}

.uwm-share-facebook:hover {
    background: #1877f2;
    color: #fff;
}

.uwm-share-twitter {
    color: #1da1f2;
    border-color: #1da1f2;
}

.uwm-share-twitter:hover {
    background: #1da1f2;
    color: #fff;
}

.uwm-share-email {
    color: #ea4335;
    border-color: #ea4335;
}

.uwm-share-email:hover {
    background: #ea4335;
    color: #fff;
}

.uwm-share-copy {
    color: #7f8c8d;
    border-color: #7f8c8d;
}

.uwm-share-copy:hover {
    background: #7f8c8d;
    color: #fff;
}

/* Actions Card */
.uwm-sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.uwm-btn-block {
    width: 100%;
    justify-content: center;
}

.uwm-btn-outline {
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.uwm-btn-outline:hover {
    background: #e74c3c;
    color: #fff;
}

/* Dashboard Card */
.uwm-dashboard-card-sidebar {
    background: linear-gradient(135deg, #F0A94C 0%, #e8963b 100%);
    border: none;
    color: #fff;
}

.uwm-dashboard-card-sidebar .uwm-card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.uwm-dashboard-card-sidebar h3,
.uwm-dashboard-card-sidebar p {
    color: #fff;
}

.uwm-dashboard-card-sidebar .uwm-btn-primary {
    background: #fff;
    color: #F0A94C;
}

.uwm-dashboard-card-sidebar .uwm-btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .uwm-profile-content-layout {
        grid-template-columns: 1fr;
    }
    
    .uwm-profile-sidebar {
        order: 2;
    }
}

@media (max-width: 768px) {
    .uwm-profile-header-content {
        padding: 0 20px 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .uwm-profile-info-section {
        text-align: center;
    }
    
    .uwm-profile-meta-row {
        justify-content: center;
    }
    
    .uwm-profile-actions-section {
        width: 100%;
        justify-content: center;
    }
    
    .uwm-profile-tabs-nav {
        padding: 0 10px;
    }
    
    .uwm-tab-btn {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .uwm-profile-content-layout {
        padding: 20px;
    }
    
    .uwm-stats-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .uwm-gallery-grid-masonry {
        grid-template-columns: 1fr;
    }
    
    .uwm-stories-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== Enhanced Overview Tab ========== */
.uwm-overview-enhanced {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Enhanced Stats Cards */
.uwm-stats-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.uwm-stat-card-enhanced {
    background: #fff;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
}

.uwm-stat-card-enhanced:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.uwm-stat-icon-bg {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.uwm-stat-card-enhanced.uwm-stat-primary .uwm-stat-icon-bg {
    background: rgba(3, 150, 143, 0.1);
    color: #03968F;
}

.uwm-stat-card-enhanced.uwm-stat-info .uwm-stat-icon-bg {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.uwm-stat-card-enhanced.uwm-stat-success .uwm-stat-icon-bg {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.uwm-stat-card-enhanced.uwm-stat-warning .uwm-stat-icon-bg {
    background: rgba(240, 169, 76, 0.1);
    color: #F0A94C;
}

.uwm-stat-details {
    flex: 1;
}

.uwm-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 4px;
}

.uwm-stat-label {
    display: block;
    font-size: 14px;
    color: #7f8c8d;
}

.uwm-stat-trend {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #27ae60;
    padding-top: 8px;
    border-top: 1px solid #f0f3f5;
}

/* Main Grid */
.uwm-overview-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.uwm-overview-card {
    background: #fff;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.uwm-overview-card:last-child {
    margin-bottom: 0;
}

.uwm-overview-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    font-size: 18px;
    color: #2c3e50;
}

.uwm-overview-card h3 .dashicons {
    color: #03968F;
    font-size: 22px;
}

/* Availability Card */
.uwm-availability-display {
    text-align: center;
}

.uwm-status-indicator-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.uwm-status-indicator-large.uwm-status-online {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.uwm-status-indicator-large.uwm-status-busy {
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
}

.uwm-status-indicator-large.uwm-status-offline {
    background: rgba(149, 165, 166, 0.1);
    color: #95a5a6;
}

.uwm-status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.uwm-availability-info {
    font-size: 14px;
    color: #7f8c8d;
    margin: 12px 0 0;
}

/* Languages Badges */
.uwm-languages-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.uwm-language-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(3, 150, 143, 0.1);
    color: #03968F;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Activity Timeline */
.uwm-activity-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.uwm-activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.uwm-activity-item:hover {
    background: #e8f5f2;
}

.uwm-activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(3, 150, 143, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #03968F;
    flex-shrink: 0;
}

.uwm-activity-content {
    flex: 1;
}

.uwm-activity-text {
    font-size: 14px;
    color: #2c3e50;
    margin: 0 0 4px;
}

.uwm-activity-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #7f8c8d;
    margin: 0;
}

.uwm-activity-badge {
    padding: 6px 12px;
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Profile Completion */
.uwm-progress-circle-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 20px auto;
}

.uwm-progress-circle {
    width: 100%;
    height: 100%;
}

.uwm-progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.uwm-progress-percent {
    font-size: 32px;
    font-weight: 700;
    color: #03968F;
}

.uwm-completion-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.uwm-completion-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
}

.uwm-completion-checklist li.completed {
    color: #2ecc71;
}

.uwm-completion-checklist li.completed .dashicons {
    color: #2ecc71;
}

.uwm-completion-checklist li.pending {
    color: #7f8c8d;
}

.uwm-completion-checklist li.pending .dashicons {
    color: #dfe6e9;
}

/* Reviews Preview */
.uwm-reviews-preview-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.uwm-review-preview-item {
    padding: 16px;
    background: #f8f9fa;
    border-radius: 10px;
}

.uwm-review-preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.uwm-review-avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.uwm-review-preview-info strong {
    display: block;
    font-size: 14px;
    color: #2c3e50;
    margin-bottom: 4px;
}

.uwm-stars-small .dashicons {
    font-size: 14px;
}

.uwm-review-preview-text {
    font-size: 13px;
    color: #34495e;
    margin: 0;
    line-height: 1.5;
}

.uwm-view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #03968F;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.uwm-view-all-link:hover {
    color: #027871;
    gap: 10px;
}

/* Achievement Badges */
.uwm-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.uwm-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.uwm-badge-item.uwm-badge-active {
    background: linear-gradient(135deg, rgba(3, 150, 143, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
}

.uwm-badge-item.uwm-badge-active:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(3, 150, 143, 0.2);
}

.uwm-badge-item .dashicons {
    font-size: 32px;
    color: #03968F;
}

.uwm-badge-label {
    font-size: 12px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
}

.uwm-no-badges,
.uwm-no-data {
    font-size: 14px;
    color: #7f8c8d;
    text-align: center;
    padding: 20px;
}

/* Responsive for Overview */
@media (max-width: 1024px) {
    .uwm-overview-main-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== Report Modal ========== */
.uwm-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.uwm-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.uwm-modal-content {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.uwm-modal-overlay.show .uwm-modal-content {
    transform: scale(1);
}

.uwm-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #7f8c8d;
    cursor: pointer;
    padding: 4px;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.uwm-modal-close:hover {
    background: #f0f0f0;
    color: #2c3e50;
}

.uwm-modal-content h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 12px 0;
    font-size: 22px;
    color: #2c3e50;
}

.uwm-modal-content h3 .dashicons {
    color: #e74c3c;
    font-size: 24px;
}

.uwm-modal-description {
    color: #7f8c8d;
    font-size: 14px;
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.uwm-report-form .uwm-form-group {
    margin-bottom: 20px;
}

.uwm-report-form label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 14px;
}

.uwm-report-form label .required {
    color: #e74c3c;
}

.uwm-report-form select,
.uwm-report-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #2c3e50;
    font-family: inherit;
    transition: all 0.3s ease;
}

.uwm-report-form select:focus,
.uwm-report-form textarea:focus {
    border-color: #03968F;
    outline: none;
    box-shadow: 0 0 0 3px rgba(3, 150, 143, 0.1);
}

.uwm-report-form textarea {
    resize: vertical;
    min-height: 100px;
}

.uwm-form-message {
    display: none;
    margin-bottom: 16px;
}

.uwm-form-message p {
    margin: 0;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
}

.uwm-form-message .uwm-error {
    background: #fee;
    color: #c33;
    border-left: 4px solid #e74c3c;
}

.uwm-form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
}

.uwm-form-actions .uwm-btn {
    padding: 12px 24px;
    font-size: 14px;
    min-width: 120px;
}

.uwm-modal-cancel {
    background: #f0f0f0;
    color: #2c3e50;
}

.uwm-modal-cancel:hover {
    background: #e0e0e0;
}

.uwm-submit-report .dashicons {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Modal Responsive */
@media (max-width: 600px) {
    .uwm-modal-content {
        padding: 24px;
        width: 95%;
    }
    
    .uwm-form-actions {
        flex-direction: column-reverse;
    }
    
    .uwm-form-actions .uwm-btn {
        width: 100%;
    }
}

