/* ===========================================
   DJSET Dashboard - Combined Stylesheet
   Version: 2.0
   
   This file contains all styles for the DJ dashboard.
   DO NOT add inline styles to djset-dashboard.php
   =========================================== */

/* ===========================================
   DJSET User Cards v3.0
   Premium Dark Card + Compact List
   =========================================== */

/* ===========================================
   Grid & List Layouts
   =========================================== */
.djset-users-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
    gap: 20px !important;
    padding: 16px 0 !important;
}

.djset-users-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

/* ===========================================
   CARD VIEW - Premium Dark Style
   =========================================== */
.djset-user-card {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    background: #1c1c1e !important;
    border: 1px solid #2d2d2d !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.djset-user-card:hover {
    border-color: #404040 !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 32px rgba(0,0,0,0.4) !important;
}

/* Header */
.djset-user-card-header {
    position: relative !important;
    height: 90px !important;
    background: linear-gradient(135deg, #2a2a2e 0%, #1f1f22 100%) !important;
    padding: 12px !important;
}

/* Badges */
.djset-user-card-badges {
    display: flex !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.djset-card-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 6px 12px !important;
    background: rgba(0,0,0,0.5) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #fff !important;
}

.djset-card-badge--dj {
    border-color: #fbbf24 !important;
    color: #fbbf24 !important;
}

/* Avatar */
.djset-user-card > .djset-user-avatar {
    position: absolute !important;
    top: 55px !important;
    left: 20px !important;
    width: 70px !important;
    height: 70px !important;
    z-index: 10 !important;
    border-radius: 50% !important;
    padding: 3px !important;
    background: #1c1c1e !important;
}

.djset-user-card > .djset-user-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    background: #2a2a2e !important;
}

/* Body */
.djset-user-card-body {
    padding: 45px 20px 20px !important;
}

/* Hide list actions in card view */
.djset-user-card .djset-list-actions {
    display: none !important;
}

/* Name row */
.djset-user-name-row {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 4px !important;
}

.djset-user-card .djset-user-name {
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

.djset-user-card .djset-user-name:hover {
    color: #a78bfa !important;
}

.djset-verified-badge {
    width: 20px !important;
    height: 20px !important;
    background: #3b82f6 !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.djset-verified-badge i {
    font-size: 10px !important;
    color: #fff !important;
}

/* Username/Role */
.djset-user-card .djset-user-username {
    color: rgba(255,255,255,0.5) !important;
    font-size: 14px !important;
    display: block !important;
    margin-bottom: 10px !important;
}

/* Location */
.djset-user-location-row {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: rgba(255,255,255,0.6) !important;
    font-size: 13px !important;
    margin-bottom: 8px !important;
}

.djset-user-location-row i {
    color: #ef4444 !important;
}

/* Genres */
.djset-user-card .djset-user-genres {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px 14px !important;
    background: rgba(255,255,255,0.05) !important;
    border-radius: 10px !important;
    margin-top: 4px !important;
}

.djset-category-icon {
    width: 26px !important;
    height: 26px !important;
    background: #a78bfa !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.djset-category-icon i {
    color: #fff !important;
    font-size: 12px !important;
}

.djset-genre-text {
    color: rgba(255,255,255,0.8) !important;
    font-size: 13px !important;
}

/* ===========================================
   Footer with Actions
   =========================================== */
.djset-user-card-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 14px 20px !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
    margin-top: auto !important;
    background: rgba(0,0,0,0.2) !important;
}

.djset-footer-category {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.djset-footer-icon {
    width: 32px !important;
    height: 32px !important;
    background: #a78bfa !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.djset-footer-icon i {
    color: #fff !important;
    font-size: 14px !important;
}

.djset-footer-text {
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

/* Footer Action Buttons */
.djset-footer-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.djset-card-action-btn {
    height: 38px !important;
    padding: 0 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    white-space: nowrap !important;
}

.djset-card-action-btn:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: rgba(255,255,255,0.2) !important;
}

.djset-card-action-btn i {
    font-size: 14px !important;
}

/* View Profile Button */
.djset-btn-view-profile {
    background: rgba(124, 92, 255, 0.15) !important;
    border-color: rgba(124, 92, 255, 0.3) !important;
    color: #a78bfa !important;
}

.djset-btn-view-profile:hover {
    background: rgba(124, 92, 255, 0.25) !important;
    border-color: rgba(124, 92, 255, 0.5) !important;
    color: #fff !important;
}

/* Follow Button */
.djset-follow-btn {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    color: #fff !important;
}

.djset-follow-btn:hover {
    background: rgba(124, 92, 255, 0.2) !important;
    border-color: rgba(124, 92, 255, 0.4) !important;
    color: #a78bfa !important;
}

/* Following State */
.djset-follow-btn.is-following {
    background: rgba(124, 92, 255, 0.2) !important;
    border-color: rgba(124, 92, 255, 0.4) !important;
    color: #a78bfa !important;
}

.djset-follow-btn.is-following:hover {
    background: rgba(239, 68, 68, 0.15) !important;
    border-color: rgba(239, 68, 68, 0.3) !important;
    color: #fca5a5 !important;
}

/* ===========================================
   COMPACT/LIST VIEW
   =========================================== */
.djset-user-card--compact,
.djset-user-card-compact {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 14px 16px !important;
    background: #1c1c1e !important;
    border: 1px solid #2d2d2d !important;
    border-radius: 12px !important;
    transition: all 0.2s ease !important;
}

.djset-user-card--compact:hover,
.djset-user-card-compact:hover {
    background: #242428 !important;
    border-color: #3a3a3e !important;
}

/* Compact Avatar */
.djset-user-card--compact .djset-user-avatar,
.djset-user-card-compact .djset-user-avatar {
    position: relative !important;
    width: 48px !important;
    height: 48px !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
    background: none !important;
}

.djset-user-card--compact .djset-user-avatar img,
.djset-user-card-compact .djset-user-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    border: 2px solid #3a3a3e !important;
}

/* Compact Info */
.djset-user-card--compact .djset-user-info,
.djset-user-card-compact .djset-user-info {
    flex: 1 !important;
    min-width: 0 !important;
}

.djset-user-card--compact .djset-user-name,
.djset-user-card-compact .djset-user-name {
    display: block !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.djset-user-card--compact .djset-user-name:hover,
.djset-user-card-compact .djset-user-name:hover {
    color: #a78bfa !important;
}

.djset-user-card--compact .djset-user-meta,
.djset-user-card-compact .djset-user-meta {
    color: rgba(255,255,255,0.5) !important;
    font-size: 13px !important;
}

/* Compact Actions */
.djset-user-card--compact .djset-compact-actions,
.djset-user-card-compact .djset-compact-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
}

.djset-compact-btn {
    height: 34px !important;
    padding: 0 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 8px !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
}

.djset-compact-btn:hover {
    background: rgba(255,255,255,0.1) !important;
}

.djset-compact-btn i {
    font-size: 12px !important;
}

.djset-compact-btn--view {
    background: rgba(124, 92, 255, 0.15) !important;
    border-color: rgba(124, 92, 255, 0.25) !important;
    color: #a78bfa !important;
}

.djset-compact-btn--view:hover {
    background: rgba(124, 92, 255, 0.25) !important;
}

.djset-compact-btn--follow.is-following {
    background: rgba(124, 92, 255, 0.15) !important;
    border-color: rgba(124, 92, 255, 0.3) !important;
    color: #a78bfa !important;
}

/* ===========================================
   Section Header
   =========================================== */
.djset-section-header {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 20px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

.djset-section-header h2 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0 !important;
}

.djset-count-badge {
    padding: 5px 12px !important;
    background: rgba(124, 92, 255, 0.15) !important;
    border: 1px solid rgba(124, 92, 255, 0.3) !important;
    border-radius: 16px !important;
    color: #a78bfa !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

/* ===========================================
   Empty State
   =========================================== */
.djset-empty-state {
    grid-column: 1 / -1 !important;
    text-align: center !important;
    padding: 50px 30px !important;
    background: #1c1c1e !important;
    border: 1px dashed #2d2d2d !important;
    border-radius: 16px !important;
}

.djset-empty-icon {
    width: 70px !important;
    height: 70px !important;
    margin: 0 auto 16px !important;
    background: rgba(124, 92, 255, 0.1) !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.djset-empty-icon i {
    font-size: 28px !important;
    color: #a78bfa !important;
}

.djset-empty-state h4 {
    color: #fff !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    margin: 0 0 8px !important;
}

.djset-empty-state p {
    color: rgba(255,255,255,0.5) !important;
    font-size: 14px !important;
    margin: 0 !important;
}

/* ===========================================
   Mobile Responsive
   =========================================== */
@media (max-width: 768px) {
    .djset-users-grid {
grid-template-columns: 1fr !important;
gap: 14px !important;
    }
    
    .djset-user-card-header {
height: 70px !important;
    }
    
    .djset-user-card > .djset-user-avatar {
top: 40px !important;
width: 60px !important;
height: 60px !important;
    }
    
    .djset-user-card-body {
padding: 38px 16px 16px !important;
    }
    
    .djset-user-card .djset-user-name {
font-size: 16px !important;
    }
    
    .djset-user-card-footer {
padding: 12px 16px !important;
flex-wrap: wrap !important;
gap: 10px !important;
    }
    
    .djset-footer-actions {
width: 100% !important;
justify-content: flex-end !important;
    }
    
    .djset-card-action-btn {
height: 34px !important;
padding: 0 10px !important;
font-size: 12px !important;
    }
}

/* ===========================================
   Rich Text Editor
   =========================================== */
.djset-editor-wrapper {
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0,0,0,0.2);
}

.djset-editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.djset-editor-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.djset-editor-btn:hover {
    background: rgba(124,92,255,0.2);
    border-color: rgba(124,92,255,0.4);
    color: #fff;
}

.djset-editor-btn.active {
    background: rgba(124,92,255,0.3);
    border-color: rgba(124,92,255,0.5);
    color: #a78bfa;
}

.djset-editor-btn i {
    font-size: 14px;
}

.djset-editor-separator {
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,0.1);
    margin: 6px 6px;
    align-self: center;
}

.djset-editor-content {
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
    padding: 16px;
    color: #fff;
    font-size: 14px;
    line-height: 1.7;
    outline: none;
    background: rgba(0,0,0,0.15);
}

.djset-editor-content:empty::before {
    content: attr(placeholder);
    color: rgba(255,255,255,0.3);
    pointer-events: none;
}

.djset-editor-content:focus {
    background: rgba(0,0,0,0.25);
}

/* Editor content styling */
.djset-editor-content p {
    margin: 0 0 12px 0;
}

.djset-editor-content ul,
.djset-editor-content ol {
    margin: 0 0 12px 0;
    padding-left: 24px;
}

.djset-editor-content li {
    margin-bottom: 4px;
}

.djset-editor-content a {
    color: #7c5cff;
    text-decoration: underline;
}

.djset-editor-content a:hover {
    color: #a78bfa;
}

/* Editor scrollbar */
.djset-editor-content::-webkit-scrollbar {
    width: 8px;
}

.djset-editor-content::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
}

.djset-editor-content::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
}

.djset-editor-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.25);
}

/* ===========================================
   Rich Text Editor - Mobile
   =========================================== */
@media (max-width: 768px) {
    .djset-editor-toolbar {
padding: 8px;
gap: 3px;
    }
    
    .djset-editor-btn {
width: 32px;
height: 32px;
font-size: 12px;
    }
    
    .djset-editor-btn i {
font-size: 12px;
    }
    
    .djset-editor-separator {
height: 20px;
margin: 6px 4px;
    }
    
    .djset-editor-content {
min-height: 150px;
padding: 12px;
font-size: 14px;
    }
}

@media (max-width: 480px) {
    .djset-editor-toolbar {
padding: 6px;
gap: 2px;
    }
    
    .djset-editor-btn {
width: 30px;
height: 30px;
font-size: 11px;
border-radius: 6px;
    }
    
    .djset-editor-btn i {
font-size: 11px;
    }
    
    .djset-editor-separator {
display: none;
    }
    
    .djset-editor-content {
min-height: 120px;
padding: 10px;
font-size: 13px;
    }
}

/* ===========================================
   Custom Styled Select Dropdown
   =========================================== */
.djset-custom-select {
    position: relative !important;
    width: 100% !important;
}

.djset-custom-select-trigger {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 16px !important;
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.djset-custom-select-trigger:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.25) !important;
}

.djset-custom-select.open .djset-custom-select-trigger {
    background: rgba(124,92,255,0.1) !important;
    border-color: rgba(124,92,255,0.5) !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.djset-custom-select-value {
    flex: 1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.djset-custom-select-arrow {
    flex-shrink: 0 !important;
    color: rgba(255,255,255,0.5) !important;
    transition: transform 0.2s ease, color 0.2s ease !important;
}

.djset-custom-select.open .djset-custom-select-arrow {
    transform: rotate(180deg) !important;
    color: #7c5cff !important;
}

.djset-custom-select-options {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: #1a1a2e !important;
    border: 1px solid rgba(124,92,255,0.5) !important;
    border-top: none !important;
    border-radius: 0 0 10px 10px !important;
    max-height: 250px !important;
    overflow-y: auto !important;
    z-index: 10000 !important;
    display: none !important;
    box-shadow: 0 12px 32px rgba(0,0,0,0.5) !important;
}

.djset-custom-select.open .djset-custom-select-options {
    display: block !important;
}

.djset-custom-select-option {
    padding: 12px 16px !important;
    color: rgba(255,255,255,0.8) !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.15s ease !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    background: #1a1a2e !important;
}

.djset-custom-select-option:last-child {
    border-bottom: none !important;
}

.djset-custom-select-option:hover {
    background: rgba(124,92,255,0.2) !important;
    color: #fff !important;
}

.djset-custom-select-option.selected {
    background: rgba(124,92,255,0.3) !important;
    color: #a78bfa !important;
}

.djset-custom-select-option.selected::after {
    content: '✓' !important;
    float: right !important;
    color: #7c5cff !important;
    font-weight: bold !important;
}

/* Scrollbar for options */
.djset-custom-select-options::-webkit-scrollbar {
    width: 8px !important;
}

.djset-custom-select-options::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.2) !important;
    border-radius: 0 0 10px 0 !important;
}

.djset-custom-select-options::-webkit-scrollbar-thumb {
    background: rgba(124,92,255,0.4) !important;
    border-radius: 4px !important;
}

.djset-custom-select-options::-webkit-scrollbar-thumb:hover {
    background: rgba(124,92,255,0.6) !important;
}

/* Mobile dropdown */
@media (max-width: 768px) {
    .djset-custom-select-trigger {
padding: 10px 14px !important;
font-size: 13px !important;
    }
    
    .djset-custom-select-option {
padding: 10px 14px !important;
font-size: 13px !important;
    }
    
    .djset-custom-select-options {
max-height: 200px !important;
    }
}
/* ===========================================
   BuddyPress Member Profile Styling
   =========================================== */

/* Main navigation tabs */
#buddypress #item-nav,
#buddypress .bp-navs,
.buddypress #item-nav {
    background: #1c1c1e !important;
    border: 1px solid #2d2d2d !important;
    border-radius: 12px !important;
    padding: 8px !important;
    margin-bottom: 20px !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
}

#buddypress #item-nav ul,
#buddypress .bp-navs ul,
.buddypress #item-nav ul {
    display: flex !important;
    gap: 6px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-wrap: nowrap !important;
}

#buddypress #item-nav ul li,
#buddypress .bp-navs ul li,
.buddypress #item-nav ul li {
    margin: 0 !important;
    flex-shrink: 0 !important;
}

#buddypress #item-nav ul li a,
#buddypress .bp-navs ul li a,
.buddypress #item-nav ul li a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 10px 16px !important;
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 8px !important;
    color: rgba(255,255,255,0.7) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    white-space: nowrap !important;
}

#buddypress #item-nav ul li a:hover,
#buddypress .bp-navs ul li a:hover,
.buddypress #item-nav ul li a:hover {
    background: rgba(124,92,255,0.15) !important;
    border-color: rgba(124,92,255,0.3) !important;
    color: #fff !important;
}

#buddypress #item-nav ul li.current a,
#buddypress #item-nav ul li.selected a,
#buddypress .bp-navs ul li.current a,
#buddypress .bp-navs ul li.selected a,
.buddypress #item-nav ul li.current a,
.buddypress #item-nav ul li.selected a {
    background: linear-gradient(135deg, #7c5cff 0%, #6b4fd4 100%) !important;
    border-color: #7c5cff !important;
    color: #fff !important;
    font-weight: 600 !important;
}

/* Count badges in nav */
#buddypress #item-nav ul li a .count,
#buddypress .bp-navs ul li a .count,
.buddypress #item-nav ul li a .count {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 20px !important;
    height: 20px !important;
    padding: 0 6px !important;
    background: rgba(0,0,0,0.3) !important;
    border-radius: 10px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
}

#buddypress #item-nav ul li.current a .count,
#buddypress .bp-navs ul li.current a .count {
    background: rgba(255,255,255,0.2) !important;
}

/* Sub-navigation (View, Edit, etc.) */
#buddypress #item-body .item-list-tabs,
#buddypress .bp-subnavs,
#buddypress #subnav,
.buddypress #subnav {
    background: #1c1c1e !important;
    border: 1px solid #2d2d2d !important;
    border-radius: 12px !important;
    padding: 8px !important;
    margin-bottom: 20px !important;
}

#buddypress #subnav ul,
#buddypress .bp-subnavs ul,
.buddypress #subnav ul {
    display: flex !important;
    gap: 6px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-wrap: wrap !important;
}

#buddypress #subnav ul li a,
#buddypress .bp-subnavs ul li a,
.buddypress #subnav ul li a {
    display: inline-flex !important;
    align-items: center !important;
    padding: 8px 14px !important;
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 8px !important;
    color: rgba(255,255,255,0.7) !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

#buddypress #subnav ul li a:hover,
#buddypress .bp-subnavs ul li a:hover,
.buddypress #subnav ul li a:hover {
    background: rgba(124,92,255,0.15) !important;
    border-color: rgba(124,92,255,0.3) !important;
    color: #fff !important;
}

#buddypress #subnav ul li.current a,
#buddypress .bp-subnavs ul li.current a,
.buddypress #subnav ul li.current a {
    background: rgba(124,92,255,0.2) !important;
    border-color: rgba(124,92,255,0.4) !important;
    color: #a78bfa !important;
}

/* Profile content area */
#buddypress #item-body,
.buddypress #item-body {
    background: #1c1c1e !important;
    border: 1px solid #2d2d2d !important;
    border-radius: 12px !important;
    padding: 24px !important;
}

/* Profile field groups */
#buddypress .bp-widget,
#buddypress .profile-fields,
.buddypress .bp-widget {
    margin-bottom: 24px !important;
}

#buddypress .bp-widget h2,
#buddypress .profile-fields h2,
#buddypress .bp-widget h3,
#buddypress .profile-fields h3,
.buddypress .bp-widget h2 {
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    margin: 0 0 16px 0 !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}

/* Profile data table */
#buddypress table.profile-fields,
#buddypress .bp-widget table,
.buddypress table.profile-fields {
    width: 100% !important;
    border-collapse: collapse !important;
    background: transparent !important;
}

#buddypress table.profile-fields tr,
#buddypress .bp-widget table tr,
.buddypress table.profile-fields tr {
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

#buddypress table.profile-fields tr:last-child,
#buddypress .bp-widget table tr:last-child {
    border-bottom: none !important;
}

#buddypress table.profile-fields td,
#buddypress table.profile-fields th,
#buddypress .bp-widget table td,
#buddypress .bp-widget table th,
.buddypress table.profile-fields td,
.buddypress table.profile-fields th {
    padding: 14px 16px !important;
    vertical-align: top !important;
    background: transparent !important;
    border: none !important;
}

#buddypress table.profile-fields td.label,
#buddypress table.profile-fields th,
.buddypress table.profile-fields td.label {
    color: rgba(255,255,255,0.6) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    width: 35% !important;
    background: rgba(0,0,0,0.2) !important;
}

#buddypress table.profile-fields td.data,
.buddypress table.profile-fields td.data {
    color: #fff !important;
    font-size: 14px !important;
}

#buddypress table.profile-fields td.data a,
.buddypress table.profile-fields td.data a {
    color: #7c5cff !important;
    text-decoration: none !important;
}

#buddypress table.profile-fields td.data a:hover,
.buddypress table.profile-fields td.data a:hover {
    color: #a78bfa !important;
    text-decoration: underline !important;
}

/* Activity stream */
#buddypress #activity-stream,
.buddypress #activity-stream {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#buddypress #activity-stream li.activity-item,
.buddypress #activity-stream li.activity-item {
    background: rgba(0,0,0,0.2) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: 10px !important;
    padding: 16px !important;
    margin-bottom: 12px !important;
}

#buddypress #activity-stream .activity-header,
.buddypress #activity-stream .activity-header {
    color: rgba(255,255,255,0.8) !important;
    font-size: 14px !important;
}

#buddypress #activity-stream .activity-header a,
.buddypress #activity-stream .activity-header a {
    color: #7c5cff !important;
    font-weight: 600 !important;
}

#buddypress #activity-stream .activity-inner,
.buddypress #activity-stream .activity-inner {
    color: #fff !important;
    margin-top: 10px !important;
}

#buddypress #activity-stream .activity-meta,
.buddypress #activity-stream .activity-meta {
    margin-top: 12px !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
}

#buddypress #activity-stream .activity-meta a,
.buddypress #activity-stream .activity-meta a {
    color: rgba(255,255,255,0.5) !important;
    font-size: 12px !important;
    text-decoration: none !important;
    margin-right: 12px !important;
}

#buddypress #activity-stream .activity-meta a:hover,
.buddypress #activity-stream .activity-meta a:hover {
    color: #7c5cff !important;
}

/* Messages list */
#buddypress #message-threads,
.buddypress #message-threads {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#buddypress #message-threads li,
.buddypress #message-threads li {
    background: rgba(0,0,0,0.2) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: 10px !important;
    padding: 14px !important;
    margin-bottom: 10px !important;
    transition: all 0.2s ease !important;
}

#buddypress #message-threads li:hover,
.buddypress #message-threads li:hover {
    background: rgba(124,92,255,0.1) !important;
    border-color: rgba(124,92,255,0.2) !important;
}

/* Friends list */
#buddypress #friend-list,
#buddypress #members-list,
.buddypress #friend-list,
.buddypress #members-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
    gap: 16px !important;
}

#buddypress #friend-list li,
#buddypress #members-list li,
.buddypress #friend-list li,
.buddypress #members-list li {
    background: rgba(0,0,0,0.2) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: 12px !important;
    padding: 16px !important;
    text-align: center !important;
}

#buddypress #friend-list li .item-avatar img,
#buddypress #members-list li .item-avatar img,
.buddypress #friend-list li .item-avatar img {
    border-radius: 50% !important;
    border: 3px solid #2d2d2d !important;
}

#buddypress #friend-list li .item-title a,
#buddypress #members-list li .item-title a,
.buddypress #friend-list li .item-title a {
    color: #fff !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

#buddypress #friend-list li .item-title a:hover,
#buddypress #members-list li .item-title a:hover {
    color: #7c5cff !important;
}

/* Buttons in profile */
#buddypress .generic-button a,
#buddypress button,
#buddypress input[type="submit"],
.buddypress .generic-button a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 18px !important;
    background: rgba(124,92,255,0.2) !important;
    border: 1px solid rgba(124,92,255,0.4) !important;
    border-radius: 8px !important;
    color: #a78bfa !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

#buddypress .generic-button a:hover,
#buddypress button:hover,
#buddypress input[type="submit"]:hover,
.buddypress .generic-button a:hover {
    background: rgba(124,92,255,0.3) !important;
    border-color: rgba(124,92,255,0.6) !important;
    color: #fff !important;
}

/* Notifications */
#buddypress #notifications-list,
.buddypress #notifications-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#buddypress #notifications-list li,
.buddypress #notifications-list li {
    background: rgba(0,0,0,0.2) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: 10px !important;
    padding: 14px 16px !important;
    margin-bottom: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

#buddypress #notifications-list li a,
.buddypress #notifications-list li a {
    color: rgba(255,255,255,0.8) !important;
    text-decoration: none !important;
}

#buddypress #notifications-list li a:hover,
.buddypress #notifications-list li a:hover {
    color: #7c5cff !important;
}

/* Settings forms */
#buddypress .standard-form label,
.buddypress .standard-form label {
    color: rgba(255,255,255,0.8) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    margin-bottom: 6px !important;
    display: block !important;
}

#buddypress .standard-form input[type="text"],
#buddypress .standard-form input[type="email"],
#buddypress .standard-form input[type="password"],
#buddypress .standard-form textarea,
#buddypress .standard-form select,
.buddypress .standard-form input[type="text"],
.buddypress .standard-form textarea {
    width: 100% !important;
    padding: 12px 16px !important;
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-size: 14px !important;
    transition: all 0.2s ease !important;
}

#buddypress .standard-form input:focus,
#buddypress .standard-form textarea:focus,
#buddypress .standard-form select:focus,
.buddypress .standard-form input:focus,
.buddypress .standard-form textarea:focus {
    outline: none !important;
    border-color: rgba(124,92,255,0.5) !important;
    background: rgba(124,92,255,0.1) !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    #buddypress #item-nav ul,
    #buddypress .bp-navs ul {
overflow-x: auto !important;
padding-bottom: 4px !important;
    }
    
    #buddypress #item-nav ul li a,
    #buddypress .bp-navs ul li a {
padding: 8px 12px !important;
font-size: 12px !important;
    }
    
    #buddypress #subnav ul {
flex-wrap: wrap !important;
    }
    
    #buddypress #subnav ul li a {
padding: 6px 10px !important;
font-size: 11px !important;
    }
    
    #buddypress #item-body {
padding: 16px !important;
    }
    
    #buddypress table.profile-fields td.label {
width: 40% !important;
padding: 10px 12px !important;
    }
    
    #buddypress table.profile-fields td.data {
padding: 10px 12px !important;
    }
    
    #buddypress #friend-list,
    #buddypress #members-list {
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
gap: 12px !important;
    }
}
/* =========================================== */
/* Extracted Style Block 1 */
/* =========================================== */
/* CRITICAL: Hide edit profile form IMMEDIATELY before any JS runs */
/* This prevents the flash of edit profile content */
.djset-profile-container {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}
/* Only show when inside active tab (after JS moves it) */
.djset-tab-content.active .djset-profile-container {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* =========================================== */
/* Extracted Style Block 2 */
/* =========================================== */
/* Hide header, footer, sidebars in embed mode ONLY */
body.djset-embed-mode header, 
body.djset-embed-mode .site-header, 
body.djset-embed-mode #masthead, 
body.djset-embed-mode .main-header,
body.djset-embed-mode footer, 
body.djset-embed-mode .site-footer, 
body.djset-embed-mode #colophon, 
body.djset-embed-mode .main-footer,
body.djset-embed-mode .starter-theme-header, 
body.djset-embed-mode .starter-theme-footer,
body.djset-embed-mode .beeteam368-sidebar, 
body.djset-embed-mode .starter-theme-sidebar,
body.djset-embed-mode .starter_theme_header, 
body.djset-embed-mode .starter_theme_footer,
body.djset-embed-mode nav.main-nav, 
body.djset-embed-mode .top-header, 
body.djset-embed-mode .bottom-footer,
body.djset-embed-mode #wpadminbar, 
body.djset-embed-mode .admin-bar-spacer,
body.djset-embed-mode .starter-theme-header-wrapper,
body.djset-embed-mode .beeteam368-header, 
body.djset-embed-mode .beeteam368-footer,
body.djset-embed-mode .starter_theme_header_wrapper,
body.djset-embed-mode .starter_theme_sidebar_left,
body.djset-embed-mode .starter_theme_sidebar_right,
body.djset-embed-mode .starter-theme-breadcrumb,
body.djset-embed-mode .page-header-wrapper,
body.djset-embed-mode .starter-theme-floating-buttons,
body.djset-embed-mode .starter_theme_floating_buttons {
    display: none !important;
}

body.djset-embed-mode { 
    padding-top: 0 !important; 
    margin-top: 0 !important;
    background: #0a0a0f !important;
}
body.djset-embed-mode.admin-bar { margin-top: 0 !important; }

/* Make main content full width in embed mode */
body.djset-embed-mode main, 
body.djset-embed-mode .site-main, 
body.djset-embed-mode #primary, 
body.djset-embed-mode .content-area,
body.djset-embed-mode .starter-theme-content, 
body.djset-embed-mode .beeteam368-content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 20px !important;
    float: none !important;
}

/* Remove any fixed positioning issues in embed mode */
body.djset-embed-mode .starter-theme-container,
body.djset-embed-mode .beeteam368-container,
body.djset-embed-mode .site-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Style the import form for embed */
body.djset-embed-mode .elementor-section-wrap > .elementor-section:first-child {
    padding-top: 0 !important;
}

/* =========================================== */
/* Extracted Style Block 3 */
/* =========================================== */
/* CRITICAL: Hide profile container immediately to prevent flash */
/* This hides the edit profile form until JS creates the tabbed interface */
.djset-profile-container {
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Once tabs are created, show content properly */
.djset-tab-content .djset-profile-container {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Global Link Reset - Remove underlines */
.djset-profile-tabs-wrapper a,
.djset-messages-full a,
.djset-tab-content a,
.djset-dashboard-content a {
    text-decoration: none !important;
}

/* Profile Tabs Container */
.djset-profile-tabs-wrapper {
    max-width: 1400px;
    margin: 0 auto 24px;
    padding: 0 20px;
}

.djset-profile-tabs {
    display: flex;
    gap: 4px;
    background: rgba(255,255,255,0.03);
    padding: 6px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 24px;
    overflow-x: auto;
}

.djset-profile-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: transparent;
    border: none;
    border-radius: 12px;
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.djset-profile-tab:hover {
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.03);
}

.djset-profile-tab.active {
    background: linear-gradient(135deg, rgba(32, 201, 151, 0.15), rgba(32, 201, 151, 0.05));
    color: #20c997;
    box-shadow: 0 0 20px rgba(32, 201, 151, 0.1);
}

.djset-profile-tab i {
    width: 20px;
    height: 20px;
}

.djset-profile-tab .djset-tab-badge {
    background: #ef4444;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* Tab Content - JS handles display override via #djset-force-styles */
.djset-tab-content {
    display: none;
}

.djset-tab-content.active {
    display: block;
}

/* Dashboard Tab Content */
.djset-dashboard-tab {
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.djset-dashboard-tab .djset-welcome {
    margin-bottom: 32px;
}

.djset-dashboard-tab .djset-welcome h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.djset-dashboard-tab .djset-welcome p {
    color: rgba(255,255,255,0.5);
    margin: 0;
    font-size: 1rem;
}

/* Stats Row */
.djset-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.djset-stat-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.djset-stat-box:hover {
    border-color: rgba(32, 201, 151, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(32, 201, 151, 0.1);
}

.djset-stat-box .stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(32, 201, 151, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    position: relative;
}

.djset-stat-box .stat-icon i {
    width: 20px;
    height: 20px;
    color: #20c997;
}

.djset-stat-box .stat-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    background: #ef4444;
    border-radius: 9px;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.djset-stat-box .stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.djset-stat-box .stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Activity Feed */
.djset-activity-feed {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: all 0.2s;
}

.activity-item:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(32, 201, 151, 0.2);
}

.activity-item i {
    width: 20px;
    height: 20px;
    color: #20c997;
    font-size: 14px;
    margin-top: 2px;
}

.activity-item > div {
    flex: 1;
}

.activity-text {
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    line-height: 1.4;
}

.activity-time {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    margin-top: 2px;
}

/* Profile Checklist */
.djset-profile-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.checklist-item.complete {
    color: rgba(255,255,255,0.8);
    border-color: rgba(32, 201, 151, 0.2);
}

.checklist-item i {
    font-size: 14px;
    color: rgba(255,255,255,0.3);
}

.checklist-item.complete i {
    color: #20c997;
}

/* Quick Stats */
.djset-quick-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: all 0.2s;
}

.quick-stat-item:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(32, 201, 151, 0.2);
}

.quick-stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

.quick-stat-value {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Followers List */
.djset-followers-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* User Card styles moved to external user-cards.css module */

.follower-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: all 0.2s;
    cursor: pointer;
}

.follower-item:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(32, 201, 151, 0.2);
    transform: translateX(4px);
}

.follower-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.follower-info {
    flex: 1;
}

.follower-name {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
}

.follower-username {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    margin-top: 2px;
}

.view-all-link {
    display: block;
    text-align: center;
    padding: 8px;
    margin-top: 8px;
    color: #20c997;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.view-all-link:hover {
    color: #1aa179;
}

/* Quick Actions in Dashboard */
.djset-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.djset-quick-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
}

.djset-quick-card:hover {
    background: rgba(32, 201, 151, 0.08);
    border-color: rgba(32, 201, 151, 0.3);
    transform: translateY(-2px);
}

.djset-quick-card .card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.djset-quick-card .card-icon i {
    width: 24px;
    height: 24px;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s;
}

.djset-quick-card:hover .card-icon i {
    color: #20c997;
    filter: drop-shadow(0 0 8px rgba(32, 201, 151, 0.5));
}

.djset-quick-card .quick-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    background: #ef4444;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

.djset-quick-card .card-text {
    flex: 1;
}

.djset-quick-card .card-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.djset-quick-card .card-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* Hide original container initially, show in Edit Profile tab */
.djset-profile-container {
    display: none;
}

.djset-tab-content.active .djset-profile-container {
    display: block;
}

/* Messages Panel */
.djset-messages-panel {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.djset-messages-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin: 0 0 32px;
}

.djset-messages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.djset-msg-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.djset-msg-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(32, 201, 151, 0.3);
    transform: translateY(-2px);
}

.djset-msg-card.djset-msg-compose {
    background: rgba(32, 201, 151, 0.1);
    border-color: rgba(32, 201, 151, 0.2);
}

.djset-msg-card.djset-msg-compose:hover {
    background: rgba(32, 201, 151, 0.15);
    border-color: rgba(32, 201, 151, 0.4);
}

.djset-msg-icon {
    width: 56px;
    height: 56px;
    background: rgba(32, 201, 151, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #20c997;
    flex-shrink: 0;
}

.djset-msg-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.djset-msg-label {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.djset-msg-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.djset-msg-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ef4444;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 10px;
    min-width: 24px;
    text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
    .djset-profile-tabs {
        padding: 4px;
    }
    .djset-profile-tab {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    .djset-profile-tab span:not(.djset-tab-badge) {
        display: none;
    }
    .djset-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .djset-quick-grid {
        grid-template-columns: 1fr;
    }
    .djset-messages-grid {
        grid-template-columns: 1fr;
    }
    .djset-msg-card {
        padding: 20px;
    }
    .djset-msg-icon {
        width: 48px;
        height: 48px;
    }
}

/* =========================================== */
/* Extracted Style Block 4 */
/* =========================================== */
.djset-stats-dashboard{padding:0!important;background:transparent!important}h2.djset-stats-title{font-size:36px!important;font-weight:700!important;margin:0 0 8px 0!important;background:linear-gradient(135deg,#fff 0%,#20c997 100%)!important;-webkit-background-clip:text!important;-webkit-text-fill-color:transparent!important;background-clip:text!important}.djset-stats-subtitle{font-size:15px!important;color:#999!important;margin:0 0 36px 0!important}.djset-stats-header{margin-bottom:36px!important;display:flex!important;justify-content:flex-end!important}.djset-time-filter{display:inline-flex!important;gap:8px!important;background:#1a1a1a!important;padding:6px!important;border-radius:14px!important;border:1px solid #2a2a2a!important}.djset-time-btn{padding:12px 24px!important;background:transparent!important;border:none!important;color:#999!important;font-size:14px!important;font-weight:600!important;border-radius:10px!important;cursor:pointer!important;transition:all 0.2s!important}.djset-time-btn:hover{color:#fff!important;background:#252525!important}.djset-time-btn.active{background:linear-gradient(135deg,#20c997 0%,#17a2b8 100%)!important;color:#000!important;box-shadow:0 4px 16px rgba(32,201,151,0.3)!important}.djset-stats-grid{display:grid!important;grid-template-columns:repeat(auto-fit,minmax(240px,1fr))!important;gap:24px!important;margin-bottom:44px!important}.djset-stat-card{background:linear-gradient(135deg,#1e1e1e 0%,#252525 100%)!important;border:1px solid #2a2a2a!important;border-radius:16px!important;padding:32px 28px!important;position:relative!important;overflow:hidden!important;transition:all 0.3s cubic-bezier(0.4,0,0.2,1)!important}.djset-stat-card::before{content:''!important;position:absolute!important;top:0!important;left:0!important;right:0!important;height:3px!important;background:linear-gradient(90deg,#20c997 0%,#17a2b8 100%)!important;opacity:0!important;transition:opacity 0.3s!important}.djset-stat-card:hover{transform:translateY(-6px)!important;border-color:rgba(32,201,151,0.5)!important;box-shadow:0 16px 40px rgba(0,0,0,0.5),0 0 0 1px rgba(32,201,151,0.1)!important}.djset-stat-card:hover::before{opacity:1!important}.djset-stat-label{font-size:13px!important;font-weight:600!important;text-transform:uppercase!important;letter-spacing:0.6px!important;color:#999!important;margin-bottom:14px!important}.djset-stat-value{font-size:40px!important;font-weight:700!important;line-height:1!important;margin-bottom:10px!important;background:linear-gradient(135deg,#fff 0%,#20c997 100%)!important;-webkit-background-clip:text!important;-webkit-text-fill-color:transparent!important;background-clip:text!important}.djset-stat-change{font-size:13px!important;color:#666!important}.djset-stat-card.platform-youtube{border-top:3px solid #ff0000!important}.djset-stat-card.platform-mixcloud{border-top:3px solid #52aad8!important}.djset-stat-card.platform-soundcloud{border-top:3px solid #ff5500!important}.djset-stat-card.platform-youtube:hover{border-color:rgba(255,0,0,0.5)!important;box-shadow:0 16px 40px rgba(0,0,0,0.5),0 0 24px rgba(255,0,0,0.25)!important}.djset-stat-card.platform-mixcloud:hover{border-color:rgba(82,170,216,0.5)!important;box-shadow:0 16px 40px rgba(0,0,0,0.5),0 0 24px rgba(82,170,216,0.25)!important}.djset-stat-card.platform-soundcloud:hover{border-color:rgba(255,85,0,0.5)!important;box-shadow:0 16px 40px rgba(0,0,0,0.5),0 0 24px rgba(255,85,0,0.25)!important}.djset-stats-section{margin-bottom:52px!important}.djset-stats-section h3{font-size:22px!important;font-weight:700!important;margin:0 0 28px 0!important;color:#fff!important;display:flex!important;align-items:center!important;gap:14px!important}.djset-stats-section h3::before{content:''!important;width:4px!important;height:28px!important;background:linear-gradient(180deg,#20c997 0%,#17a2b8 100%)!important;border-radius:2px!important}.djset-stats-placeholder{background:#1a1a1a!important;border:2px dashed #2a2a2a!important;border-radius:14px!important;padding:72px 48px!important;text-align:center!important}.djset-stats-placeholder p{color:#666!important;font-size:15px!important;margin:0!important}.djset-top-content-list{display:flex!important;flex-direction:column!important;gap:12px!important}.djset-top-content-item{display:flex!important;align-items:center!important;gap:16px!important;padding:12px 16px!important;background:#1a1a1a!important;border:1px solid #2a2a2a!important;border-radius:12px!important;text-decoration:none!important;transition:all 0.2s!important}.djset-top-content-item:hover{background:#252525!important;border-color:#20c997!important;transform:translateX(4px)!important}.djset-top-rank{width:32px!important;height:32px!important;display:flex!important;align-items:center!important;justify-content:center!important;background:linear-gradient(135deg,#20c997 0%,#17a2b8 100%)!important;color:#000!important;font-weight:700!important;font-size:14px!important;border-radius:8px!important;flex-shrink:0!important}.djset-top-thumb{width:60px!important;height:60px!important;border-radius:8px!important;overflow:hidden!important;flex-shrink:0!important;background:#252525!important}.djset-top-thumb img{width:100%!important;height:100%!important;object-fit:cover!important}.djset-top-thumb-placeholder{width:100%!important;height:100%!important;display:flex!important;align-items:center!important;justify-content:center!important;color:#666!important;font-size:20px!important}.djset-top-info{flex:1!important;min-width:0!important}.djset-top-title{color:#fff!important;font-size:14px!important;font-weight:600!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;margin-bottom:4px!important}.djset-top-views{color:#20c997!important;font-size:13px!important;font-weight:500!important}@media (max-width:768px){h2.djset-stats-title{font-size:26px!important}.djset-stat-value{font-size:32px!important}.djset-stats-grid{grid-template-columns:1fr!important}.djset-stats-header{justify-content:center!important}.djset-time-filter{width:100%!important}.djset-time-btn{flex:1!important}}

/* =========================================== */
/* Extracted Style Block 5 */
/* =========================================== */
.djset-venues-wrapper { margin-top: 10px; }
                    .djset-venue-search-container { position: relative; margin-bottom: 16px; }
                    .djset-venue-search-input {
                        width: 100%;
                        padding: 14px 16px;
                        background: #1a1a1a;
                        border: 1px solid #333;
                        border-radius: 10px;
                        color: #fff;
                        font-size: 15px;
                        outline: none;
                        box-sizing: border-box;
                    }
                    .djset-venue-search-input:focus {
                        border-color: #22c55e;
                        box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
                    }
                    .djset-venue-search-input::placeholder { color: #666; }
                    .djset-venue-dropdown {
                        position: absolute;
                        top: 100%;
                        left: 0;
                        right: 0;
                        background: #1a1a1a;
                        border: 1px solid #333;
                        border-radius: 10px;
                        max-height: 280px;
                        overflow-y: auto;
                        z-index: 1000;
                        display: none;
                        margin-top: 4px;
                        box-shadow: 0 8px 24px rgba(0,0,0,0.4);
                    }
                    .djset-venue-dropdown-item {
                        padding: 14px 16px;
                        cursor: pointer;
                        border-bottom: 1px solid #2a2a2a;
                        transition: background 0.15s;
                    }
                    .djset-venue-dropdown-item:last-child { border-bottom: none; }
                    .djset-venue-dropdown-item:hover { background: rgba(34,197,94,0.15); }
                    .djset-venue-dropdown-item-name { color: #fff; font-size: 14px; font-weight: 500; }
                    .djset-venue-dropdown-item-address { color: #888; font-size: 12px; margin-top: 3px; }
                    .djset-venues-list { display: flex; flex-direction: column; gap: 10px; }
                    .djset-venue-chip {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        padding: 12px 16px;
                        background: linear-gradient(135deg, rgba(34,197,94,0.15) 0%, rgba(34,197,94,0.05) 100%);
                        border: 1px solid rgba(34,197,94,0.3);
                        border-radius: 10px;
                        color: #fff;
                    }
                    .djset-venue-chip-info { flex: 1; }
                    .djset-venue-chip-name { font-weight: 600; font-size: 14px; }
                    .djset-venue-chip-location { color: #888; font-size: 12px; margin-top: 2px; }
                    .djset-venue-chip-remove {
                        background: transparent;
                        border: none;
                        color: #ef4444;
                        cursor: pointer;
                        padding: 6px;
                        font-size: 16px;
                        opacity: 0.7;
                        transition: opacity 0.2s;
                    }
                    .djset-venue-chip-remove:hover { opacity: 1; }
                    .djset-venues-count { color: #666; font-size: 13px; margin-top: 10px; }

/* =========================================== */
/* Extracted Style Block 6 */
/* =========================================== */
:root {
    --djset-primary: ' . esc_attr($opt['primary_color']) . ';
    --djset-secondary: ' . esc_attr($opt['secondary_color']) . ';
    --djset-bg: ' . esc_attr($opt['background_color']) . ';
    --djset-card: ' . esc_attr($opt['card_background']) . ';
    --djset-text: ' . esc_attr($opt['text_color']) . ';
    --djset-glow: rgba(32, 201, 151, 0.15);
}

.djset-dashboard {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--djset-bg);
    min-height: 100vh;
    padding: 32px 24px;
    color: var(--djset-text);
}

.djset-dashboard * { box-sizing: border-box; }

.djset-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.djset-header {
    margin-bottom: 40px;
}

.djset-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 8px;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.djset-header p {
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    margin: 0;
}

/* Stats Grid */
.djset-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.djset-stat-card {
    background: var(--djset-card);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.djset-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(32, 201, 151, 0.3);
    box-shadow: 0 8px 32px rgba(32, 201, 151, 0.15);
}

.djset-stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--djset-primary), var(--djset-secondary));
    opacity: 0;
    transition: opacity 0.3s;
}

.djset-stat-card:hover::before { opacity: 1; }

.djset-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: rgba(32, 201, 151, 0.1);
}

.djset-stat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--djset-secondary);
}

.djset-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.djset-stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Main Grid */
.djset-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
}

@media (max-width: 1024px) {
    .djset-grid { grid-template-columns: 1fr; }
}

/* Widgets */
.djset-widget {
    background: var(--djset-card);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 24px;
}

.djset-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.djset-widget-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.djset-widget-title .djset-icon svg {
    width: 22px;
    height: 22px;
    color: var(--djset-secondary);
}

.djset-view-all {
    color: var(--djset-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
}

.djset-view-all:hover {
    color: #fff;
    text-shadow: 0 0 12px rgba(32, 201, 151, 0.5);
}

.djset-badge {
    background: var(--djset-secondary);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
}

/* Quick Actions */
.djset-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.djset-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.djset-action-btn:hover {
    background: rgba(32, 201, 151, 0.08);
    border-color: rgba(32, 201, 151, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.djset-action-btn:hover .djset-action-icon svg {
    color: var(--djset-secondary);
    filter: drop-shadow(0 0 6px rgba(32, 201, 151, 0.5));
}

.djset-action-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.djset-action-icon svg {
    width: 22px;
    height: 22px;
    transition: all 0.3s ease;
    color: rgba(255,255,255,0.6);
}

.djset-action-label {
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}

/* Messages */
.djset-messages-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    background: rgba(0,0,0,0.2);
    padding: 4px;
    border-radius: 12px;
}

.djset-tab {
    flex: 1;
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.djset-tab:hover { color: rgba(255,255,255,0.8); }

.djset-tab.active {
    background: var(--djset-secondary);
    color: #000;
}

.djset-message-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    margin-bottom: 12px;
    transition: all 0.2s;
    cursor: pointer;
}

.djset-message-item:hover {
    background: rgba(255,255,255,0.05);
}

.djset-message-item.unread {
    border-left: 3px solid var(--djset-secondary);
}

.djset-message-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.djset-message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.djset-message-content { flex: 1; min-width: 0; }

.djset-message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.djset-message-from {
    font-weight: 600;
    color: #fff;
}

.djset-message-date {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.djset-message-subject {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.djset-no-content {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255,255,255,0.4);
}

.djset-no-content .djset-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    opacity: 0.3;
}

.djset-no-content svg {
    width: 64px;
    height: 64px;
}

/* Login Required */
.djset-login-required {
    background: var(--djset-card);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    max-width: 500px;
    margin: 60px auto;
}

.djset-login-required h2 {
    color: #fff;
    margin: 0 0 16px;
}

.djset-login-required p {
    color: rgba(255,255,255,0.6);
    margin: 0 0 24px;
}

.djset-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.djset-btn-primary {
    background: linear-gradient(135deg, var(--djset-primary), var(--djset-secondary));
    color: #fff;
}

.djset-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 92, 255, 0.4);
}

/* Mobile */
@media (max-width: 768px) {
    .djset-dashboard { padding: 20px 16px; }
    .djset-header h1 { font-size: 1.75rem; }
    .djset-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .djset-stat-card { padding: 16px; }
    .djset-stat-value { font-size: 1.5rem; }
    .djset-widget { padding: 20px; border-radius: 16px; }
    .djset-actions-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .djset-action-btn { padding: 16px 12px; }
}

/* =========================================== */
/* Extracted Style Block 7 */
/* =========================================== */
.djset-messages-full {
    background: #12121a;
    border-radius: 16px;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}
.djset-messages-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.djset-header-compose {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #20c997;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}
.djset-header-compose:hover {
    background: #1db386;
    transform: translateY(-1px);
}
.djset-messages-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
.djset-messages-title svg {
    color: #20c997;
}
.djset-unread-badge {
    background: #ef4444;
    color: #fff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
}
.djset-messages-nav {
    display: none; /* Old nav hidden */
}

/* New Sidebar Layout */
.djset-messages-layout {
    display: flex;
    min-height: 400px;
}
.djset-messages-sidebar {
    width: 180px;
    background: rgba(0,0,0,0.3);
    border-right: 1px solid rgba(255,255,255,0.08);
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}
.djset-sidebar-section {
    margin-bottom: 16px;
}
.djset-sidebar-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
    padding: 8px 10px 6px;
}
.djset-sidebar-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.15s;
    text-align: left;
}
.djset-sidebar-btn:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
}
.djset-sidebar-btn.active {
    background: rgba(124,92,255,0.15);
    color: #fff;
}
.djset-sidebar-btn.active svg {
    color: #7c5cff;
}
.djset-sidebar-btn span:first-of-type {
    flex: 1;
}
.djset-sidebar-badge {
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
}
.djset-messages-content {
    flex: 1;
    min-width: 0;
}

/* Mobile: Stack layout */
@media (max-width: 768px) {
    .djset-messages-header {
        flex-wrap: wrap;
        gap: 10px;
    }
    .djset-header-compose {
        padding: 6px 12px;
        font-size: 12px;
    }
    .djset-messages-layout {
        flex-direction: column;
    }
    .djset-messages-sidebar {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 10px;
        gap: 6px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .djset-sidebar-section {
        display: contents;
    }
    .djset-sidebar-label {
        display: none;
    }
    .djset-sidebar-btn {
        padding: 8px 12px;
        font-size: 12px;
        width: auto;
        border: 1px solid rgba(255,255,255,0.1);
    }
    .djset-sidebar-btn span:first-of-type {
        flex: none;
    }
}

.djset-msg-nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.djset-msg-nav-btn:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
}
.djset-msg-nav-btn.active {
    background: rgba(124,92,255,0.15);
    border-color: #7c5cff;
    color: #fff;
}
.djset-msg-nav-btn.djset-compose-btn {
    margin-left: auto;
    background: #20c997;
    border-color: #20c997;
    color: #fff;
}
.djset-msg-nav-btn.djset-compose-btn:hover {
    background: #1db386;
}
.djset-msg-nav-btn.djset-compose-btn.active {
    background: #1db386;
    border-color: #1db386;
}
.djset-nav-badge {
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    padding: 1px 6px;
    border-radius: 8px;
}
.djset-msg-view {
    display: none;
    padding: 0;
}
.djset-msg-view.active {
    display: block;
}
.djset-messages-list {
    max-height: 500px;
    overflow-y: auto;
}
.djset-message-item {
    position: relative;
    display: flex;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s;
}
.djset-message-item:hover {
    background: rgba(255,255,255,0.03);
}
.djset-message-item.unread {
    background: rgba(124,92,255,0.08);
}
.djset-message-item.unread::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #7c5cff;
}
.djset-msg-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.djset-msg-content {
    flex: 1;
    min-width: 0;
}
.djset-msg-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}
.djset-msg-from {
    font-weight: 600;
    color: #fff;
    font-size: 15px;
}
.djset-msg-date {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}
.djset-msg-subject {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.djset-msg-excerpt {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.djset-msg-overlay-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.djset-no-messages {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: rgba(255,255,255,0.5);
    text-align: center;
}
.djset-no-messages svg {
    margin-bottom: 16px;
}
.djset-no-messages p {
    margin: 0;
    font-size: 15px;
}

/* Compose Form */
.djset-compose-form {
    padding: 24px;
}
.djset-form-group {
    margin-bottom: 20px;
    position: relative;
}
.djset-form-group label {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
}
.djset-input, .djset-textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.djset-input:focus, .djset-textarea:focus {
    outline: none;
    border-color: #7c5cff;
}
.djset-input::placeholder, .djset-textarea::placeholder {
    color: rgba(255,255,255,0.3);
}
.djset-textarea {
    resize: vertical;
    min-height: 120px;
}
.djset-user-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a24;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    display: none;
}
.djset-user-suggestions.active {
    display: block;
}
.djset-user-suggestion {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.2s;
}
.djset-user-suggestion:hover {
    background: rgba(255,255,255,0.05);
}
.djset-user-suggestion img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}
.djset-user-suggestion span {
    color: #fff;
    font-size: 14px;
}
.djset-form-actions {
    display: flex;
    justify-content: flex-end;
}
.djset-send-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #20c997;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.djset-send-btn:hover {
    background: #1db386;
}
.djset-send-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.djset-form-status {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}
.djset-form-status.success {
    display: block;
    background: rgba(32,201,151,0.15);
    color: #20c997;
}
.djset-form-status.error {
    display: block;
    background: rgba(239,68,68,0.15);
    color: #ef4444;
}

@media (max-width: 600px) {
    .djset-messages-nav {
        flex-wrap: wrap;
    }
    .djset-msg-nav-btn.djset-compose-btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }
    .djset-message-item {
        padding: 12px 16px;
    }
    .djset-msg-avatar img {
        width: 40px;
        height: 40px;
    }
}

/* Thread Viewer */
.djset-thread-link {
    cursor: pointer;
}
.djset-thread-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.2);
}
.djset-back-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}
.djset-back-btn:hover {
    background: rgba(255,255,255,0.15);
}
.djset-thread-info {
    flex: 1;
    min-width: 0;
}
.djset-thread-subject {
    margin: 0 0 4px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.djset-thread-with {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}
.djset-thread-messages {
    max-height: 400px;
    overflow-y: auto;
    padding: 20px 24px;
}
.djset-thread-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: rgba(255,255,255,0.5);
}
.djset-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: #7c5cff;
    border-radius: 50%;
    animation: djset-spin 0.8s linear infinite;
    margin-bottom: 12px;
}
@keyframes djset-spin {
    to { transform: rotate(360deg); }
}
.djset-thread-message {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}
.djset-thread-message.mine {
    flex-direction: row-reverse;
}
.djset-thread-message .djset-msg-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.djset-thread-bubble {
    max-width: 70%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    border-top-left-radius: 4px;
}
.djset-thread-message.mine .djset-thread-bubble {
    background: rgba(124,92,255,0.2);
    border-top-left-radius: 12px;
    border-top-right-radius: 4px;
}
.djset-thread-bubble-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    gap: 12px;
}
.djset-thread-sender {
    font-weight: 600;
    color: #fff;
    font-size: 13px;
}
.djset-thread-date {
    color: rgba(255,255,255,0.4);
    font-size: 11px;
}
.djset-thread-bubble-content {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.5;
}
.djset-thread-bubble-content p {
    margin: 0 0 8px;
}
.djset-thread-bubble-content p:last-child {
    margin-bottom: 0;
}
.djset-thread-reply {
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.2);
}
.djset-thread-reply form {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}
.djset-reply-textarea {
    flex: 1;
    padding: 12px 16px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    resize: none;
    min-height: 44px;
    max-height: 120px;
}
.djset-reply-textarea:focus {
    outline: none;
    border-color: #7c5cff;
}
.djset-reply-textarea::placeholder {
    color: rgba(255,255,255,0.3);
}
.djset-reply-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    background: #20c997;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.djset-reply-btn:hover {
    background: #1db386;
}
.djset-reply-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 600px) {
    .djset-thread-header {
        padding: 12px 16px;
    }
    .djset-thread-messages {
        padding: 16px;
    }
    .djset-thread-bubble {
        max-width: 85%;
    }
    .djset-thread-reply {
        padding: 12px 16px;
    }
    .djset-thread-reply form {
        flex-direction: column;
    }
    .djset-reply-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Secondary Nav */
.djset-messages-nav-secondary {
    display: flex;
    gap: 6px;
    padding: 12px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.15);
    flex-wrap: wrap;
}
.djset-msg-nav-btn-sm {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}
.djset-msg-nav-btn-sm:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}
.djset-msg-nav-btn-sm.active {
    background: rgba(124,92,255,0.15);
    border-color: #7c5cff;
    color: #fff;
}
.djset-nav-badge-sm {
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    padding: 1px 5px;
    border-radius: 6px;
}

/* Star Button */
.djset-star-btn {
    position: relative;
    z-index: 2;
    padding: 8px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}
.djset-star-btn:hover {
    color: #fbbf24;
}
.djset-star-btn.starred {
    color: #fbbf24;
}
.djset-thread-star {
    margin-left: auto;
}

/* Message Actions Container */
.djset-msg-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

/* Delete Button */
.djset-delete-msg-btn {
    position: relative;
    z-index: 2;
    padding: 8px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 6px;
}
.djset-delete-msg-btn:hover {
    color: #ef4444;
    background: rgba(239,68,68,0.1);
}

/* Restore Button */
.djset-restore-msg-btn {
    padding: 8px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 6px;
}
.djset-restore-msg-btn:hover {
    color: #20c997;
    background: rgba(32,201,151,0.1);
}

/* Permanent Delete Button */
.djset-perma-delete-btn {
    padding: 8px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 6px;
}
.djset-perma-delete-btn:hover {
    color: #ef4444;
    background: rgba(239,68,68,0.1);
}

/* Deleted View Header */
.djset-deleted-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: rgba(239,68,68,0.05);
    border-bottom: 1px solid rgba(239,68,68,0.1);
    flex-wrap: wrap;
    gap: 10px;
}
.djset-deleted-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}
.djset-deleted-info svg {
    color: rgba(255,255,255,0.4);
}
.djset-empty-trash-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(239,68,68,0.15);
    border: 1px solid rgba(239,68,68,0.25);
    border-radius: 6px;
    color: #ef4444;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.djset-empty-trash-btn:hover {
    background: rgba(239,68,68,0.25);
    border-color: rgba(239,68,68,0.4);
}
.djset-empty-trash-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Deleted message item styling */
.djset-deleted-item {
    opacity: 0.7;
}
.djset-deleted-item:hover {
    opacity: 1;
}

/* Sidebar badge for deleted */
.djset-sidebar-badge.deleted {
    background: rgba(239,68,68,0.8);
}

/* Notifications */
.djset-notifications-list {
    max-height: 500px;
    overflow-y: auto;
}
.djset-notification-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s;
}
.djset-notification-item:hover {
    background: rgba(255,255,255,0.03);
}
.djset-notification-item.unread {
    background: rgba(124,92,255,0.08);
}
.djset-notification-link {
    flex: 1;
    text-decoration: none;
    color: inherit;
}
.djset-notification-content {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 4px;
}
.djset-notification-content a {
    color: #7c5cff;
    text-decoration: none;
}
.djset-notification-time {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}
.djset-dismiss-notification {
    padding: 6px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.3);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s, color 0.2s;
}
.djset-notification-item:hover .djset-dismiss-notification {
    opacity: 1;
}
.djset-dismiss-notification:hover {
    color: #ef4444;
}

/* Friends Panel */
.djset-friends-panel {
    padding: 20px 24px;
}
.djset-friends-section {
    margin-bottom: 24px;
}
.djset-friends-section:last-child {
    margin-bottom: 0;
}
.djset-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.djset-section-badge {
    background: #7c5cff;
    color: #fff;
    font-size: 11px;
    padding: 1px 6px;
    border-radius: 8px;
}
.djset-friends-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.djset-friend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    transition: background 0.2s;
}
.djset-friend-item:hover {
    background: rgba(255,255,255,0.06);
}
.djset-friend-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.djset-friend-info {
    flex: 1;
    min-width: 0;
}
.djset-friend-name {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.djset-friend-name:hover {
    color: #7c5cff;
}
.djset-friend-username {
    display: block;
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}
.djset-friend-actions {
    display: flex;
    gap: 6px;
}
.djset-accept-friend, .djset-reject-friend, .djset-message-friend {
    padding: 8px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 6px;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.2s;
}
.djset-accept-friend:hover {
    background: #20c997;
    color: #fff;
}
.djset-reject-friend:hover {
    background: #ef4444;
    color: #fff;
}
.djset-message-friend:hover {
    background: #7c5cff;
    color: #fff;
}
.djset-link-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background: #7c5cff;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.2s;
}
.djset-link-btn:hover {
    background: #6b4ce0;
}

/* Activity Feed */
.djset-activity-list {
    max-height: 500px;
    overflow-y: auto;
}
.djset-activity-items {
    padding: 16px 24px;
}
.djset-activity-item {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.djset-activity-item:last-child {
    border-bottom: none;
}
.djset-activity-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.djset-activity-content {
    flex: 1;
    min-width: 0;
}
.djset-activity-header {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 4px;
}
.djset-activity-header a {
    color: #7c5cff;
    text-decoration: none;
}
.djset-activity-body {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 6px;
}
.djset-activity-time {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}

/* Notices */
.djset-notices-list {
    padding: 16px 24px;
}
.djset-notice-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: rgba(124,92,255,0.1);
    border: 1px solid rgba(124,92,255,0.2);
    border-radius: 10px;
    margin-bottom: 12px;
}
.djset-notice-item:last-child {
    margin-bottom: 0;
}
.djset-notice-icon {
    color: #7c5cff;
    flex-shrink: 0;
}
.djset-notice-content {
    flex: 1;
}
.djset-notice-subject {
    margin: 0 0 6px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}
.djset-notice-message {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}
.djset-notice-date {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}

/* Hint text */
.djset-hint {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

/* =========================================== */
/* Extracted Style Block 8 */
/* =========================================== */
/* Content Manager Styles */
.djset-content-manager {
    background: #12121a;
    border-radius: 16px;
    overflow: hidden;
}

/* Platform Tabs Row */
.djset-platform-tabs-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
    gap: 16px;
}
.djset-platform-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

/* Divider between tabs and action button */
.djset-tab-divider {
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,0.1);
    margin: 0 8px;
}

/* Action button styling - matches tabs but with accent */
.djset-action-btn {
    background: rgba(124, 92, 255, 0.15) !important;
    border-color: rgba(124, 92, 255, 0.3) !important;
    color: #a78bfa !important;
}
.djset-action-btn:hover {
    background: rgba(124, 92, 255, 0.25) !important;
    border-color: #7c5cff !important;
    color: #fff !important;
}

/* Platform Tab Buttons - Override VidMov theme */
.djset-platform-tab,
button.djset-platform-tab,
.djset-platform-tabs button.djset-platform-tab {
    all: unset !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 16px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 10px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
}
.djset-platform-tab:hover,
button.djset-platform-tab:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
}
.djset-platform-tab.active,
button.djset-platform-tab.active {
    color: #fff !important;
}
.djset-platform-tab[data-platform="all"].active {
    background: rgba(124, 92, 255, 0.15) !important;
    border-color: #7c5cff !important;
}
.djset-platform-tab[data-platform="youtube"].active {
    background: rgba(255, 0, 0, 0.15) !important;
    border-color: #ff0000 !important;
}
.djset-platform-tab[data-platform="mixcloud"].active {
    background: rgba(82, 170, 213, 0.15) !important;
    border-color: #52aad5 !important;
}
.djset-platform-tab[data-platform="soundcloud"].active {
    background: rgba(255, 85, 0, 0.15) !important;
    border-color: #ff5500 !important;
}
.djset-platform-tab[data-platform="posts"].active {
    background: rgba(32, 201, 151, 0.15) !important;
    border-color: #20c997 !important;
}
.djset-platform-tab .count {
    padding: 2px 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    font-size: 11px;
}
.djset-platform-tab.active .count {
    background: rgba(255,255,255,0.2);
}
.djset-platform-tab i,
.djset-platform-tab svg {
    font-size: 14px;
    width: 16px;
    height: 16px;
}

/* Link Content Button */
.djset-platform-action-btns {
    display: flex;
    gap: 8px;
}
.djset-cm-upload-btn,
button.djset-cm-upload-btn,
.djset-platform-action-btns button {
    all: unset !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 18px !important;
    background: linear-gradient(135deg, #7c5cff, #5a3fd6) !important;
    border: none !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
}
.djset-cm-upload-btn:hover,
button.djset-cm-upload-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(124,92,255,0.4) !important;
}

.djset-cm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 12px;
}
.djset-cm-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}
.djset-cm-title svg {
    color: #7c5cff;
}
.djset-cm-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.djset-cm-pill {
    padding: 6px 12px;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}
.djset-cm-pill.highlight {
    background: rgba(124,92,255,0.2);
    color: #7c5cff;
}
.djset-pill-num {
    font-weight: 600;
    color: #fff;
    margin-right: 4px;
}

/* Hide old tabs nav - styles now in djset-dashboard.css */
    white-space: nowrap;
    flex-direction: row;
}
.djset-cm-tab:hover {
    color: #fff;
}
.djset-cm-tab.active {
    color: #7c5cff;
    border-bottom-color: #7c5cff;
}
.djset-cm-tab-count,
.djset-cm-count {
    padding: 2px 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    font-size: 12px;
}
.djset-cm-tab.active .djset-cm-tab-count,
.djset-cm-tab.active .djset-cm-count {
    background: rgba(124,92,255,0.2);
    color: #7c5cff;
}
.djset-cm-panels {
    min-height: 300px;
}
.djset-cm-panel {
    display: none;
    padding: 20px 24px;
}
.djset-cm-panel.active {
    display: block;
}
.djset-cm-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.djset-cm-panel-title {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}
.djset-cm-upload-btn {
    padding: 8px 16px;
    background: linear-gradient(135deg, #7c5cff, #00d4ff);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.djset-cm-upload-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(124,92,255,0.4);
}

/* Empty States - Modern Design */
.djset-cm-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px;
    min-height: 300px;
}

.djset-empty-icon-wrap {
    margin-bottom: 24px;
}

.djset-empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    position: relative;
    overflow: hidden;
}

.djset-empty-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.15;
    border-radius: 20px;
}

.djset-empty-icon svg,
.djset-empty-icon i {
    position: relative;
    z-index: 1;
}

/* Purple theme (default/all) */
.djset-empty-icon--purple {
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.2), rgba(124, 92, 255, 0.05));
    border: 1px solid rgba(124, 92, 255, 0.2);
    color: #a78bfa;
}

/* YouTube theme */
.djset-empty-icon--youtube {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15), rgba(255, 0, 0, 0.05));
    border: 1px solid rgba(255, 0, 0, 0.2);
    color: #ff4444;
}

/* Mixcloud theme */
.djset-empty-icon--mixcloud {
    background: linear-gradient(135deg, rgba(82, 170, 213, 0.2), rgba(82, 170, 213, 0.05));
    border: 1px solid rgba(82, 170, 213, 0.2);
    color: #52aad5;
}

/* SoundCloud theme */
.djset-empty-icon--soundcloud {
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.15), rgba(255, 85, 0, 0.05));
    border: 1px solid rgba(255, 85, 0, 0.2);
    color: #ff5500;
}

/* Teal theme (posts) */
.djset-empty-icon--teal {
    background: linear-gradient(135deg, rgba(32, 201, 151, 0.2), rgba(32, 201, 151, 0.05));
    border: 1px solid rgba(32, 201, 151, 0.2);
    color: #20c997;
}

.djset-empty-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px;
}

.djset-empty-desc {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 28px;
    max-width: 320px;
}

/* Empty state buttons */
.djset-cm-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.2), rgba(124, 92, 255, 0.1));
    border: 1px solid rgba(124, 92, 255, 0.3);
    border-radius: 12px;
    color: #a78bfa;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.djset-cm-empty-btn:hover {
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.3), rgba(124, 92, 255, 0.15));
    border-color: #7c5cff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 92, 255, 0.25);
}

/* YouTube button */
.djset-cm-empty-btn--youtube {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15), rgba(255, 0, 0, 0.05));
    border-color: rgba(255, 0, 0, 0.3);
    color: #ff6666;
}
.djset-cm-empty-btn--youtube:hover {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.25), rgba(255, 0, 0, 0.1));
    border-color: #ff0000;
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.2);
}

/* Mixcloud button */
.djset-cm-empty-btn--mixcloud {
    background: linear-gradient(135deg, rgba(82, 170, 213, 0.2), rgba(82, 170, 213, 0.05));
    border-color: rgba(82, 170, 213, 0.3);
    color: #52aad5;
}
.djset-cm-empty-btn--mixcloud:hover {
    background: linear-gradient(135deg, rgba(82, 170, 213, 0.3), rgba(82, 170, 213, 0.1));
    border-color: #52aad5;
    box-shadow: 0 8px 24px rgba(82, 170, 213, 0.2);
}

/* SoundCloud button */
.djset-cm-empty-btn--soundcloud {
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.15), rgba(255, 85, 0, 0.05));
    border-color: rgba(255, 85, 0, 0.3);
    color: #ff7733;
}
.djset-cm-empty-btn--soundcloud:hover {
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.25), rgba(255, 85, 0, 0.1));
    border-color: #ff5500;
    box-shadow: 0 8px 24px rgba(255, 85, 0, 0.2);
}

/* Teal button (posts) */
.djset-cm-empty-btn--teal {
    background: linear-gradient(135deg, rgba(32, 201, 151, 0.2), rgba(32, 201, 151, 0.05));
    border-color: rgba(32, 201, 151, 0.3);
    color: #20c997;
}
.djset-cm-empty-btn--teal:hover {
    background: linear-gradient(135deg, rgba(32, 201, 151, 0.3), rgba(32, 201, 151, 0.1));
    border-color: #20c997;
    box-shadow: 0 8px 24px rgba(32, 201, 151, 0.2);
}

.djset-cm-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.djset-cm-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.2s;
}
.djset-cm-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
}
.djset-cm-thumb {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255,255,255,0.05);
    position: relative;
}
.djset-cm-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.djset-cm-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
}
.djset-cm-duration {
    position: absolute;
    bottom: 4px;
    right: 4px;
    padding: 2px 6px;
    background: rgba(0,0,0,0.8);
    border-radius: 4px;
    font-size: 11px;
    color: #fff;
}
.djset-cm-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.djset-cm-item-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.djset-cm-item-title a {
    color: inherit;
    text-decoration: none;
}
.djset-cm-item-title a:hover {
    color: #7c5cff;
}
.djset-cm-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
}
.djset-cm-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.djset-cm-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.djset-cm-status-pills {
    display: flex;
    gap: 4px;
}
.djset-cm-status-pill,
.djset-status-pill {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
}
.djset-cm-status-pill:hover,
.djset-status-pill:hover {
    background: rgba(255,255,255,0.12);
}
.djset-cm-status-pill.public,
.djset-status-pill.public {
    background: rgba(32,201,151,0.15);
    color: #20c997;
}
.djset-cm-status-pill.public.active,
.djset-status-pill.active:first-child {
    background: #20c997;
    color: #fff;
}
.djset-cm-status-pill.private,
.djset-status-pill.private {
    background: rgba(255,193,7,0.15);
    color: #ffc107;
}
.djset-cm-status-pill.private.active,
.djset-status-pill.active:last-of-type {
    background: #ffc107;
    color: #000;
}
.djset-status-saved {
    font-size: 12px;
    color: #20c997;
    margin-left: 8px;
}
.djset-cm-btn,
.djset-cm-action {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.djset-cm-btn-view,
.djset-cm-action.view {
    background: rgba(0,212,255,0.12);
    border-color: rgba(0,212,255,0.25);
    color: #00d4ff;
}
.djset-cm-btn-view:hover,
.djset-cm-action.view:hover {
    background: rgba(0,212,255,0.2);
    border-color: rgba(0,212,255,0.4);
}
.djset-cm-btn-edit,
.djset-cm-action.edit {
    background: rgba(255,193,7,0.12);
    border-color: rgba(255,193,7,0.25);
    color: #ffc107;
}
.djset-cm-btn-edit:hover,
.djset-cm-action.edit:hover {
    background: rgba(255,193,7,0.2);
    border-color: rgba(255,193,7,0.4);
}
.djset-cm-btn-delete,
.djset-cm-action.delete {
    background: rgba(239,68,68,0.12);
    border-color: rgba(239,68,68,0.25);
    color: #ef4444;
}
.djset-cm-btn-delete:hover,
.djset-cm-action.delete:hover {
    background: rgba(239,68,68,0.2);
    border-color: rgba(239,68,68,0.4);
}

/* Meta items styling */
.djset-cm-item-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.djset-cm-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Import Tab Styles */
.djset-cm-import-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 0;
}
.djset-import-header {
    text-align: center;
    margin-bottom: 32px;
}
.djset-import-header h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 20px;
}
.djset-import-header p {
    margin: 0;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}
.djset-import-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}
.djset-import-tab {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.djset-import-tab:hover {
    background: rgba(255,255,255,0.08);
}
.djset-import-tab.active {
    background: rgba(124,92,255,0.15);
    border-color: rgba(124,92,255,0.3);
    color: #7c5cff;
}
.djset-import-tab svg {
    width: 20px;
    height: 20px;
}
.djset-import-panel {
    display: none;
}
.djset-import-panel.active {
    display: block;
}
.djset-import-input-group {
    margin-bottom: 16px;
}
.djset-import-input-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
}
.djset-import-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    transition: all 0.2s;
    box-sizing: border-box;
}
.djset-import-input:focus {
    outline: none;
    border-color: #7c5cff;
    background: rgba(124,92,255,0.08);
}
.djset-import-input::placeholder {
    color: rgba(255,255,255,0.4);
}
.djset-import-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #7c5cff, #00d4ff);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.djset-import-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124,92,255,0.4);
}
.djset-import-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.djset-import-status {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}
.djset-import-status.success {
    display: block;
    background: rgba(32,201,151,0.15);
    color: #20c997;
    border: 1px solid rgba(32,201,151,0.3);
}
.djset-import-status.error {
    display: block;
    background: rgba(239,68,68,0.15);
    color: #ef4444;
    border: 1px solid rgba(239,68,68,0.3);
}
.djset-import-status.loading {
    display: block;
    background: rgba(124,92,255,0.15);
    color: #7c5cff;
    border: 1px solid rgba(124,92,255,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .djset-cm-header {
        padding: 14px 16px;
    }
    .djset-cm-tabs {
        padding: 0 16px;
    }
    .djset-cm-panel {
        padding: 16px;
    }
    .djset-cm-item {
        flex-direction: column;
        gap: 12px;
    }
    .djset-cm-thumb {
        width: 100%;
        height: 160px;
    }
    .djset-cm-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .djset-cm-btn {
        flex: 1;
        justify-content: center;
    }
}

/* =========================================== */
/* Extracted Style Block 9 */
/* =========================================== */
/* Import Modal Styles */
.djset-import-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.djset-import-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
}
.djset-import-modal-content {
    position: relative;
    background: linear-gradient(180deg, #1a1a2e 0%, #12121a 100%);
    border-radius: 24px;
    padding: 48px 64px;
    max-width: 1040px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
}
.djset-import-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.05);
    border: none;
    border-radius: 12px;
    color: rgba(255,255,255,0.5);
    font-size: 26px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.djset-import-modal-close:hover {
    background: rgba(239,68,68,0.2);
    color: #ef4444;
}
.djset-import-header {
    text-align: center;
    margin-bottom: 32px;
}
.djset-import-header h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: -0.5px;
}
.djset-import-header p {
    color: rgba(255,255,255,0.5);
    font-size: 16px;
    margin: 0;
}

/* Platform Label */
.djset-import-platform-label {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 16px;
    text-align: center;
}

/* Import Tabs */
.djset-import-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
    padding: 10px;
    background: rgba(0,0,0,0.25);
    border-radius: 16px;
}
.djset-import-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 24px;
    background: transparent;
    border: none;
    border-radius: 12px;
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}
.djset-import-tab:hover {
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.06);
}
.djset-import-tab.active {
    background: linear-gradient(135deg, rgba(124,92,255,0.25), rgba(0,212,255,0.15));
    color: #fff;
    box-shadow: 0 4px 16px rgba(124,92,255,0.2);
}
.djset-import-tab i {
    font-size: 20px;
}
.djset-import-tab .fa-youtube {
    color: #FF0000;
}
.djset-import-tab .fa-soundcloud {
    color: #FF5500;
}
.djset-import-tab .fa-mixcloud {
    color: #5000FF;
}

/* Import Forms */
.djset-import-form {
    display: none;
}
.djset-import-form.active {
    display: block;
}
.djset-import-field {
    margin-bottom: 24px;
}
.djset-import-field label {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.djset-import-field label .optional {
    color: rgba(255,255,255,0.35);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}
.djset-import-input,
.djset-import-select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    transition: all 0.2s;
}
.djset-import-input:focus,
.djset-import-select:focus {
    outline: none;
    border-color: rgba(124,92,255,0.5);
    background: rgba(255,255,255,0.07);
    box-shadow: 0 0 0 4px rgba(124,92,255,0.1);
}
.djset-import-input::placeholder {
    color: rgba(255,255,255,0.3);
}
.djset-import-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}
.djset-import-select option {
    background: #1a1a2e;
}

/* Import Button */
.djset-import-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 28px;
    background: linear-gradient(135deg, #7c5cff, #00d4ff);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.djset-import-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(124,92,255,0.35);
}
.djset-import-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.djset-import-btn i {
    font-size: 18px;
}

/* Import Status */
.djset-import-status {
    text-align: center;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 15px;
    margin-top: 20px;
    font-weight: 500;
}
.djset-import-status:empty {
    display: none;
}
.djset-import-status.loading {
    background: rgba(124,92,255,0.15);
    color: #a78bfa;
}
.djset-import-status.success {
    background: rgba(34,197,94,0.15);
    color: #4ade80;
}
.djset-import-status.error {
    background: rgba(239,68,68,0.15);
    color: #f87171;
}

/* Import Footer */
.djset-import-footer {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.djset-import-footer p {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    text-align: center;
    margin: 0;
    line-height: 1.7;
}

/* Tags Input */
.djset-tags-container {
    position: relative;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 12px 16px;
    min-height: 54px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    transition: all 0.2s;
}
.djset-tags-container:focus-within {
    border-color: rgba(124,92,255,0.5);
    background: rgba(255,255,255,0.07);
    box-shadow: 0 0 0 4px rgba(124,92,255,0.1);
}
.djset-tags-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.djset-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(124,92,255,0.3), rgba(0,212,255,0.2));
    border: 1px solid rgba(124,92,255,0.4);
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}
.djset-tag-pill-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
    line-height: 1;
}
.djset-tag-pill-remove:hover {
    background: rgba(239,68,68,0.6);
}
.djset-tags-input {
    flex: 1;
    min-width: 180px;
    padding: 8px 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    outline: none;
}
.djset-tags-input::placeholder {
    color: rgba(255,255,255,0.3);
}
.djset-tags-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a2e;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    margin-top: 6px;
    max-height: 220px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.djset-tags-dropdown.show {
    display: block;
}
.djset-tags-dropdown-item {
    padding: 12px 16px;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    cursor: pointer;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.djset-tags-dropdown-item:hover {
    background: rgba(124,92,255,0.2);
    color: #fff;
}
.djset-tags-dropdown-item.create {
    color: #7c5cff;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.djset-tags-dropdown-item.create i {
    font-size: 12px;
}
.djset-tags-dropdown-empty {
    padding: 14px 16px;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    text-align: center;
}

/* Responsive - Tablet */
@media (max-width: 860px) {
    .djset-import-modal-content {
        padding: 40px 36px;
        max-width: 95%;
    }
    .djset-import-header h3 {
        font-size: 28px;
    }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
    .djset-import-modal-content {
        padding: 28px 20px;
        border-radius: 20px;
    }
    .djset-import-modal-close {
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    .djset-import-header {
        margin-bottom: 24px;
    }
    .djset-import-header h3 {
        font-size: 24px;
    }
    .djset-import-header p {
        font-size: 14px;
    }
    .djset-import-platform-label {
        font-size: 10px;
        margin-bottom: 12px;
    }
    .djset-import-tabs {
        flex-direction: column;
        gap: 8px;
        padding: 6px;
        margin-bottom: 28px;
    }
    .djset-import-tab {
        padding: 14px 16px;
        font-size: 14px;
        border-radius: 10px;
    }
    .djset-import-tab i {
        font-size: 18px;
    }
    .djset-import-field {
        margin-bottom: 20px;
    }
    .djset-import-field label {
        font-size: 11px;
        margin-bottom: 8px;
    }
    .djset-import-input,
    .djset-import-select {
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 10px;
    }
    .djset-import-btn {
        padding: 16px 24px;
        font-size: 15px;
        border-radius: 12px;
    }
    .djset-import-footer {
        margin-top: 28px;
        padding-top: 20px;
    }
    .djset-import-footer p {
        font-size: 12px;
    }
    .djset-tags-container {
        padding: 10px 14px;
        min-height: 50px;
    }
    .djset-tags-input {
        min-width: 140px;
        font-size: 15px;
    }
}

/* =========================================== */
/* Extracted Style Block 10 */
/* =========================================== */
/* Edit Modal Styles */
.djset-edit-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.djset-edit-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
}
.djset-edit-modal-content {
    position: relative;
    background: linear-gradient(180deg, #1a1a2e 0%, #16162a 100%);
    border-radius: 16px;
    padding: 32px;
    padding-bottom: 32px;
    max-width: 1100px;
    width: 95%;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08);
    margin: auto;
}
.djset-edit-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.djset-edit-modal-close:hover {
    background: rgba(239,68,68,0.2);
    color: #ef4444;
}
.djset-edit-modal-header {
    text-align: center;
    margin-bottom: 20px;
}
.djset-edit-modal-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(124,92,255,0.2), rgba(0,212,255,0.2));
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.djset-edit-modal-icon i {
    font-size: 18px;
    background: linear-gradient(135deg, #7c5cff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.djset-edit-modal-subtitle {
    display: block;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 2px;
}
.djset-edit-modal-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}
.djset-edit-field {
    margin-bottom: 16px;
}
.djset-edit-field label {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}
.djset-edit-hint {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 6px;
}
.djset-edit-field input[type="text"],
.djset-edit-field textarea,
.djset-edit-field select {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    transition: all 0.2s;
    box-sizing: border-box;
}
.djset-edit-field input:focus,
.djset-edit-field textarea:focus,
.djset-edit-field select:focus {
    outline: none;
    border-color: #7c5cff;
    background: rgba(124,92,255,0.08);
}
.djset-edit-field input::placeholder,
.djset-edit-field textarea::placeholder {
    color: rgba(255,255,255,0.3);
}
.djset-edit-chips-container {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 10px;
    min-height: 50px;
}
.djset-edit-chips-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}
#djset-edit-tags-list .djset-edit-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255,193,7,0.15);
    border: 1px solid rgba(255,193,7,0.3);
    border-radius: 8px;
    font-size: 13px;
    color: #ffc107;
}
#djset-edit-cat-list .djset-edit-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(124,92,255,0.15);
    border: 1px solid rgba(124,92,255,0.3);
    border-radius: 8px;
    font-size: 13px;
    color: #7c5cff;
}
.djset-edit-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255,193,7,0.15);
    border: 1px solid rgba(255,193,7,0.3);
    border-radius: 8px;
    font-size: 13px;
    color: #ffc107;
}
.djset-edit-chip-remove {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    font-size: 16px;
    line-height: 1;
}
.djset-edit-chip-remove:hover {
    opacity: 1;
}
.djset-edit-cat-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

/* Custom Category Dropdown */
.djset-custom-select {
    position: relative !important;
    width: 100% !important;
}
.djset-custom-select-trigger {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 16px !important;
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}
.djset-custom-select-trigger:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.25) !important;
}
.djset-custom-select.open .djset-custom-select-trigger {
    background: rgba(124,92,255,0.1) !important;
    border-color: rgba(124,92,255,0.5) !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.djset-custom-select-value {
    flex: 1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.djset-custom-select-arrow {
    flex-shrink: 0 !important;
    color: rgba(255,255,255,0.5) !important;
    transition: transform 0.2s ease, color 0.2s ease !important;
}
.djset-custom-select.open .djset-custom-select-arrow {
    transform: rotate(180deg) !important;
    color: #7c5cff !important;
}
.djset-custom-select-options {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: #1a1a2e !important;
    border: 1px solid rgba(124,92,255,0.5) !important;
    border-top: none !important;
    border-radius: 0 0 10px 10px !important;
    max-height: 250px !important;
    overflow-y: auto !important;
    z-index: 100000 !important;
    display: none !important;
    box-shadow: 0 12px 32px rgba(0,0,0,0.6) !important;
}
.djset-custom-select.open .djset-custom-select-options {
    display: block !important;
}
.djset-custom-select-option {
    padding: 12px 16px !important;
    color: rgba(255,255,255,0.8) !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.15s ease !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    background: #1a1a2e !important;
}
.djset-custom-select-option:last-child {
    border-bottom: none !important;
}
.djset-custom-select-option:hover {
    background: rgba(124,92,255,0.25) !important;
    color: #fff !important;
}
.djset-custom-select-option.selected {
    background: rgba(124,92,255,0.35) !important;
    color: #a78bfa !important;
}
.djset-custom-select-option.selected::after {
    content: '✓' !important;
    float: right !important;
    color: #7c5cff !important;
    font-weight: bold !important;
}

/* Hide old select styles - not used anymore */
.djset-edit-select-wrapper {
    display: none;
}
.djset-edit-select {
    display: none;
}

/* Hide old cat button styles - not used anymore */
.djset-edit-cat-buttons {
    display: none;
}
.djset-edit-cat-create {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.djset-edit-cat-input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
}
.djset-edit-cat-input:focus {
    outline: none;
    border-color: #7c5cff;
    background: rgba(124,92,255,0.08);
}
.djset-edit-cat-input::placeholder {
    color: rgba(255,255,255,0.4);
}
.djset-edit-cat-add-btn {
    padding: 10px 16px;
    background: rgba(124,92,255,0.2);
    border: 1px solid rgba(124,92,255,0.3);
    border-radius: 8px;
    color: #7c5cff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}
.djset-edit-cat-add-btn:hover {
    background: rgba(124,92,255,0.3);
    border-color: rgba(124,92,255,0.5);
}
.djset-edit-chips-input {
    border: none !important;
    background: transparent !important;
    padding: 6px 0 !important;
    min-width: 120px;
    flex: 1;
}
.djset-edit-tags-input-wrapper {
    position: relative;
    flex: 1;
    min-width: 150px;
}
.djset-edit-tags-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a2e;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.djset-edit-tags-suggestion {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    transition: all 0.15s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.djset-edit-tags-suggestion:hover {
    background: rgba(124,92,255,0.15);
    color: #fff;
}
.djset-edit-tags-suggestion-count {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.1);
    padding: 2px 8px;
    border-radius: 10px;
}
.djset-edit-chips-select {
    width: 100%;
    margin-top: 8px;
}
.djset-edit-image-preview {
    margin-bottom: 12px;
}
.djset-edit-image-preview img {
    max-width: 200px;
    max-height: 150px;
    border-radius: 8px;
    object-fit: cover;
}
.djset-edit-image-upload {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.djset-edit-image-btn,
.djset-edit-image-remove {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}
.djset-edit-image-btn {
    background: rgba(124,92,255,0.2);
    color: #7c5cff;
}
.djset-edit-image-btn:hover {
    background: rgba(124,92,255,0.3);
}
.djset-edit-image-remove {
    background: rgba(239,68,68,0.15);
    color: #ef4444;
}
.djset-edit-image-remove:hover {
    background: rgba(239,68,68,0.25);
}
.djset-edit-media-preview {
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
}
.djset-edit-media-preview:empty {
    display: none;
}
.djset-edit-media-preview iframe {
    max-width: 100%;
    border-radius: 8px;
}
.djset-edit-media-preview .media-url-display {
    padding: 12px 16px;
    background: rgba(124,92,255,0.1);
    border-radius: 8px;
    font-size: 13px;
    color: #7c5cff;
    word-break: break-all;
}
.djset-edit-media-preview .media-url-display i {
    margin-right: 8px;
}
.djset-edit-privacy-select {
    appearance: none;
    cursor: pointer;
}
.djset-edit-privacy-toggle {
    display: flex;
    gap: 8px;
    max-width: 320px;
}
.djset-privacy-btn {
    flex: 1;
    padding: 10px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}
.djset-privacy-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.djset-privacy-btn.active[data-status="publish"] {
    background: rgba(32,201,151,0.15);
    border-color: rgba(32,201,151,0.3);
    color: #20c997;
}
.djset-privacy-btn.active[data-status="private"] {
    background: rgba(255,193,7,0.15);
    border-color: rgba(255,193,7,0.3);
    color: #ffc107;
}

/* Rich Text Editor styles moved to external djset-dashboard.css */

.djset-edit-field textarea#djset-edit-content {
    min-height: 120px;
    font-family: inherit;
    line-height: 1.6;
}
.djset-edit-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    justify-content: center;
}
.djset-edit-cancel {
    padding: 10px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.2s;
}
.djset-edit-cancel:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
}
.djset-edit-submit {
    padding: 10px 20px;
    background: linear-gradient(135deg, #7c5cff 0%, #00d4ff 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.djset-edit-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(124,92,255,0.4);
}
.djset-edit-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.djset-edit-submit.success {
    background: linear-gradient(135deg, #20c997 0%, #10b981 100%);
    box-shadow: 0 4px 15px rgba(32,201,151,0.4);
}
.djset-edit-submit.success:hover {
    transform: none;
    box-shadow: 0 6px 20px rgba(32,201,151,0.4);
}
.djset-edit-msg {
    margin-top: 16px;
    margin-bottom: 8px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
}
.djset-edit-msg:empty {
    display: none;
}
.djset-edit-msg.ok {
    background: rgba(32,201,151,0.15);
    color: #20c997;
}
.djset-edit-msg.err {
    background: rgba(239,68,68,0.15);
    color: #ef4444;
}

/* Delete Modal Styles */
.djset-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    backdrop-filter: blur(8px);
    padding: 16px;
    overflow-y: auto;
}
.djset-modal {
    background: linear-gradient(180deg, #1a1a2e 0%, #16162a 100%);
    border-radius: 20px;
    padding: 32px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08);
    margin: auto;
}
@media (max-width: 480px) {
    .djset-modal {
        padding: 24px 20px;
        border-radius: 16px;
    }
    .djset-modal-title {
        font-size: 18px;
    }
    .djset-modal-actions {
        flex-direction: column;
    }
}
.djset-modal-icon {
    margin-bottom: 16px;
}
.djset-modal-title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}
.djset-modal-text {
    margin: 0 0 24px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.5;
}
.djset-modal-actions {
    display: flex;
    gap: 12px;
}
.djset-modal-btn {
    flex: 1;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}
.djset-modal-cancel {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
}
.djset-modal-cancel:hover {
    background: rgba(255,255,255,0.12);
}
.djset-modal-confirm {
    background: #ef4444;
    color: #fff;
}
.djset-modal-confirm:hover {
    background: #dc2626;
}

/* Import Modal Styles */
.djset-import-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow-y: auto;
}
.djset-import-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
}
.djset-import-modal-content {
    position: relative;
    background: linear-gradient(180deg, #1a1a2e 0%, #16162a 100%);
    border-radius: 20px;
    padding: 32px;
    max-width: 500px;
    width: 100%;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08);
    margin: auto;
}
@media (max-width: 480px) {
    .djset-import-modal-content {
        padding: 20px 16px;
        border-radius: 16px;
    }
    .djset-import-tabs {
        flex-direction: column;
        gap: 8px;
    }
    .djset-import-tab {
        width: 100%;
    }
}
.djset-import-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.djset-import-modal-close:hover {
    background: rgba(239,68,68,0.2);
    color: #ef4444;
}
.djset-import-header {
    text-align: center;
    margin-bottom: 24px;
}
.djset-import-modal-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(124,92,255,0.2), rgba(0,212,255,0.2));
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.djset-import-modal-icon svg {
    color: #7c5cff;
}
.djset-import-header h3 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}
.djset-import-header p {
    margin: 0;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}
.djset-import-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}
.djset-import-tab {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.djset-import-tab:hover {
    background: rgba(255,255,255,0.08);
}
.djset-import-tab.active {
    background: rgba(124,92,255,0.15);
    border-color: rgba(124,92,255,0.3);
    color: #7c5cff;
}
.djset-import-tab svg {
    width: 20px;
    height: 20px;
}
.djset-import-form {
    display: none;
}
.djset-import-form.active {
    display: block;
}
.djset-import-input-group {
    margin-bottom: 16px;
}
.djset-import-input-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
}
.djset-import-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    transition: all 0.2s;
    box-sizing: border-box;
}
.djset-import-input:focus {
    outline: none;
    border-color: #7c5cff;
    background: rgba(124,92,255,0.08);
}
.djset-import-input::placeholder {
    color: rgba(255,255,255,0.4);
}
.djset-import-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #7c5cff, #00d4ff);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.djset-import-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124,92,255,0.4);
}
.djset-import-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.djset-import-status {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}
.djset-import-status.success {
    display: block;
    background: rgba(32,201,151,0.15);
    color: #20c997;
    border: 1px solid rgba(32,201,151,0.3);
}
.djset-import-status.error {
    display: block;
    background: rgba(239,68,68,0.15);
    color: #ef4444;
    border: 1px solid rgba(239,68,68,0.3);
}
.djset-import-status.loading {
    display: block;
    background: rgba(124,92,255,0.15);
    color: #7c5cff;
    border: 1px solid rgba(124,92,255,0.3);
}
.djset-import-help {
    margin-top: 20px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.djset-import-help strong {
    color: rgba(255,255,255,0.7);
}
/* ===========================================
   DJSET User Cards - Clean Centered Design
   Avatar → Name → Location → Genres → Footer
   =========================================== */

/* Grid */
.djset-users-grid { display: grid !important; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important; gap: 16px !important; padding: 16px 0 !important; }

/* Card Container */
.djset-user-card { display: flex !important; flex-direction: column !important; align-items: center !important; text-align: center !important; background: #1a1a1a !important; border-radius: 16px !important; padding: 24px 20px 20px !important; transition: all 0.3s ease !important; }
.djset-user-card:hover { transform: translateY(-4px) !important; box-shadow: 0 16px 40px rgba(0,0,0,0.4) !important; }

/* Avatar */
.djset-card-avatar { display: block !important; width: 80px !important; height: 80px !important; border-radius: 50% !important; overflow: hidden !important; margin-bottom: 14px !important; border: 3px solid #333 !important; background: #2a2a2e !important; }
.djset-card-avatar img { width: 100% !important; height: 100% !important; object-fit: cover !important; }

/* Name */
.djset-card-name { margin: 0 0 8px !important; }
.djset-card-name a { color: #fff !important; font-size: 18px !important; font-weight: 700 !important; text-decoration: none !important; }
.djset-card-name a:hover { color: #a78bfa !important; }

/* Location */
.djset-card-location { display: flex !important; align-items: center !important; justify-content: center !important; gap: 6px !important; color: rgba(255,255,255,0.5) !important; font-size: 13px !important; margin-bottom: 12px !important; }
.djset-card-location i { font-size: 12px !important; color: #ef4444 !important; }

/* Genre Pills */
.djset-card-genres { display: flex !important; flex-wrap: wrap !important; justify-content: center !important; gap: 6px !important; margin-bottom: 16px !important; }
.djset-genre-pill { display: inline-flex !important; padding: 6px 12px !important; background: #fbbf24 !important; border-radius: 6px !important; font-size: 12px !important; font-weight: 600 !important; color: #000 !important; }

/* Footer with icon buttons */
.djset-card-footer { display: flex !important; align-items: center !important; justify-content: center !important; gap: 24px !important; padding-top: 16px !important; border-top: 1px solid rgba(255,255,255,0.08) !important; width: 100% !important; margin-top: auto !important; }
.djset-card-icon-btn { display: flex !important; align-items: center !important; gap: 6px !important; background: none !important; border: none !important; color: rgba(255,255,255,0.6) !important; font-size: 14px !important; cursor: pointer !important; padding: 0 !important; transition: color 0.2s !important; text-decoration: none !important; }
.djset-card-icon-btn:hover { color: #fff !important; }
.djset-card-icon-btn i { font-size: 18px !important; }
.djset-icon-count { font-size: 14px !important; font-weight: 500 !important; }

/* Follow button states */
.djset-follow-btn.is-following { color: #ef4444 !important; }
.djset-follow-btn.is-following i { font-weight: 900 !important; }
.djset-follow-btn:hover { color: #ef4444 !important; }

/* Empty State */
.djset-empty-state { grid-column: 1 / -1 !important; text-align: center !important; padding: 50px 24px !important; background: #1a1a1a !important; border: 1px dashed #333 !important; border-radius: 16px !important; }
.djset-empty-icon { width: 64px !important; height: 64px !important; margin: 0 auto 14px !important; background: rgba(124, 92, 255, 0.1) !important; border-radius: 14px !important; display: flex !important; align-items: center !important; justify-content: center !important; }
.djset-empty-icon i { font-size: 26px !important; color: #a78bfa !important; }
.djset-empty-state h4 { color: #fff !important; font-size: 16px !important; font-weight: 600 !important; margin: 0 0 6px !important; }
.djset-empty-state p { color: rgba(255,255,255,0.5) !important; font-size: 13px !important; margin: 0 !important; }

/* Mobile */
@media (max-width: 768px) {
    .djset-users-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
    .djset-card-avatar { width: 70px !important; height: 70px !important; }
}

/* Critical VidMov Override */
.djset-platform-tab,
button.djset-platform-tab,
.djset-platform-tabs button,
.djset-content-manager button.djset-platform-tab {
    all: unset !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 16px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 10px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
}
.djset-platform-tab:hover,
button.djset-platform-tab:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #fff !important;
}
.djset-platform-tab.active[data-platform="all"] { background: rgba(124, 92, 255, 0.15) !important; border-color: #7c5cff !important; color: #fff !important; }
.djset-platform-tab.active[data-platform="youtube"] { background: rgba(255, 0, 0, 0.15) !important; border-color: #ff0000 !important; color: #fff !important; }
.djset-platform-tab.active[data-platform="mixcloud"] { background: rgba(82, 170, 213, 0.15) !important; border-color: #52aad5 !important; color: #fff !important; }
.djset-platform-tab.active[data-platform="soundcloud"] { background: rgba(255, 85, 0, 0.15) !important; border-color: #ff5500 !important; color: #fff !important; }
.djset-platform-tab.active[data-platform="posts"] { background: rgba(32, 201, 151, 0.15) !important; border-color: #20c997 !important; color: #fff !important; }
.djset-cm-upload-btn,
button.djset-cm-upload-btn,
.djset-platform-action-btns button {
    all: unset !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 18px !important;
    background: linear-gradient(135deg, #7c5cff, #5a3fd6) !important;
    border: none !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
}