/* Submit Album Form - Dark Premium Theme */

.submit-album-form-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 60px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    /* Remove white space on sides - extend edge-to-edge */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}

.submit-album-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: #111111;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    font-size: 16px;
    color: #888888;
    margin: 0 0 40px 0;
}

/* Progress Bar */
.progress-bar {
    display: none;
}

.progress-fill {
    position: absolute;
    top: 20px;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 2px;
    transition: width 0.4s ease;
    z-index: 1;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
}

.step-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #888888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.step-indicator.active {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.step-indicator.completed {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.step-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.step-labels span {
    font-size: 12px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 35px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form Elements */
.form-group {
    margin-bottom: 25px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #cccccc;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group label.required::after {
    content: ' *';
    color: #ef4444;
}

.form-control {
    width: 100%;
    max-width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: inherit;
    height: 48px;
}

input[type="text"].form-control,
input[type="date"].form-control,
input[type="file"].form-control {
    height: 48px;
    border-radius: 10px;
}

textarea.form-control {
    height: auto;
    min-height: 48px;
}

.form-control:focus {
    outline: none;
    border-color: #6366f1;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-control.error {
    border-color: #ef4444;
}

.form-control::placeholder,
input[type="text"]::placeholder,
input[type="date"]::placeholder,
input[type="number"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
textarea::placeholder,
input.artist-search-input::placeholder {
    color: #ffffff;
    opacity: 0.6;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: rgba(255, 255, 255, 0.05);
    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='%23cccccc' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
    color: #ffffff !important;
}

/* Style dropdown options for proper contrast */
select.form-control option {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 10px;
}

/* Ensure selected value is visible in the dropdown */
select.form-control option:checked {
    background-color: #6366f1;
    color: #ffffff;
}

/* Ensure selected value is visible when dropdown is closed */
select.form-control:not(:focus) {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff !important;
}

/* Focus state */
select.form-control:focus {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group-half {
    flex: 1;
}

.form-group-quarter {
    flex: 1;
}

/* File Upload */
.file-upload-wrapper {
    margin-top: 8px;
}

.file-input {
    display: none;
}

.file-upload-display {
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
}

.file-upload-display:hover {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

.file-upload-placeholder {
    color: #888888;
}

.file-upload-placeholder svg {
    margin-bottom: 10px;
    color: #6366f1;
}

.file-upload-placeholder p {
    margin: 10px 0 5px 0;
    font-size: 14px;
    color: #cccccc;
}

.file-upload-placeholder small {
    font-size: 12px;
    color: #666666;
}

.file-preview-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 10px;
}

.file-preview {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
    display: block;
}

.remove-file-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #111111;
    border: 2px solid #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.remove-file-btn:hover {
    background: #ef4444;
    transform: scale(1.1);
}

.remove-file-btn svg {
    width: 16px;
    height: 16px;
}

.file-upload-info {
    color: #22c55e;
    font-size: 14px;
    padding: 10px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 6px;
    width: 100%;
}

.file-upload-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-upload-progress {
    width: 100%;
}

.progress-bar-upload {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-bar-fill {
    height: 100%;
    background: #6366f1;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 12px;
    color: #cccccc;
}

.file-upload-success {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #22c55e;
    width: 100%;
    justify-content: space-between;
}

.play-audio-btn {
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid #6366f1;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    color: #6366f1;
}

.play-audio-btn:hover {
    background: #6366f1;
    color: #ffffff;
    transform: scale(1.1);
}

.play-audio-btn svg {
    width: 18px;
    height: 18px;
}

.remove-wav-btn {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.remove-wav-btn:hover {
    background: #ef4444;
    transform: scale(1.1);
}

.remove-wav-btn svg {
    width: 14px;
    height: 14px;
}

.file-name {
    font-size: 14px;
    color: #22c55e;
    flex: 1;
}

/* Multi-Entry Fields */
.multi-entry-wrapper {
    position: relative;
}

.multi-entry-wrapper .multi-entry-input {
    padding-right: 40px;
}

.add-entry-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid #6366f1;
    color: #6366f1;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-entry-btn:hover {
    background: #6366f1;
    color: #ffffff;
}

.entries-list {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.entry-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid #6366f1;
    border-radius: 16px;
    font-size: 13px;
    color: #cccccc;
}

.entry-tag .remove-entry {
    cursor: pointer;
    color: #ef4444;
    font-weight: 600;
    transition: color 0.2s ease;
}

.entry-tag .remove-entry:hover {
    color: #ff4444;
}

/* Date Input Styling */
/* Date Input Wrapper */
.date-input-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.date-input-wrapper .date-input {
    padding-right: 50px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.date-input-wrapper .calendar-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #888888;
    pointer-events: none;
}

input[type="date"].date-input {
    cursor: pointer;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

input[type="date"].date-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

/* Radio Buttons */
.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #cccccc;
}

.radio-label:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #6366f1;
}

.radio-label input[type="radio"] {
    margin-right: 8px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: #6366f1;
}

.radio-label input[type="radio"]:checked + span {
    color: #ffffff;
}

.radio-label:has(input[type="radio"]:checked) {
    background: rgba(99, 102, 241, 0.2);
    border-color: #6366f1;
}

/* Track Items */
.track-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.track-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.track-item-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.track-item-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.track-item-title-collapsed {
    font-size: 16px;
    font-weight: 500;
    color: #cccccc;
    margin: 0;
}

.track-expand-btn {
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid #6366f1;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.track-expand-btn:hover {
    background: rgba(99, 102, 241, 0.3);
    transform: scale(1.05);
}

.track-expand-btn svg {
    width: 16px;
    height: 16px;
    color: #6366f1;
    transition: transform 0.3s ease;
}

.track-item.track-collapsed .track-expand-btn svg {
    transform: rotate(-90deg);
}

.track-item-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remove-track-form-btn {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.remove-track-form-btn:hover {
    background: #ef4444;
    transform: scale(1.1);
}

.remove-track-form-btn svg {
    width: 18px;
    height: 18px;
}

/* Collapsed Track State */
.track-item.track-collapsed {
    padding: 15px 20px;
}

.track-item.track-collapsed .track-item-header {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.track-item.track-collapsed .track-item-content {
    display: none;
}

.track-item-content {
    transition: all 0.3s ease;
}

#add-track-btn {
    margin-top: 20px;
}

/* Navigation Buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #cccccc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* Overview */
.overview-content {
    color: #cccccc;
}

.overview-section {
    margin-bottom: 40px;
}

.overview-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.overview-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 20px 0 15px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.overview-grid .full-width {
    grid-column: 1 / -1;
}

.overview-grid div {
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 14px;
}

.overview-grid strong {
    color: #ffffff;
    margin-right: 8px;
}

.overview-track {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

/* Error Messages */
.error-message {
    display: block;
    color: #ef4444;
    font-size: 12px;
    margin-top: 5px;
}

.form-messages {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.form-messages.success {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-messages.error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .submit-album-form-container {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 32px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group-half,
    .form-group-quarter {
        flex: 1;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .date-input-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .date-input-wrapper .date-input {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .progress-steps {
        margin-bottom: 10px;
    }
    
    .step-indicator {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .step-labels {
        font-size: 10px;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

/* Artist Search Styles */
.artist-search-wrapper {
    position: relative;
}

.artist-selected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    min-height: 20px;
}

.artist-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid #6366f1;
    border-radius: 16px;
    font-size: 13px;
    color: #ffffff;
}

.artist-tag span {
    color: #ffffff;
}

.remove-artist-tag {
    background: transparent;
    border: none;
    color: #ef4444;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.remove-artist-tag:hover {
    color: #ff4444;
}

.artist-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-top: 5px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.artist-search-result {
    padding: 10px 15px;
    color: #ffffff;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}

.artist-search-result:hover {
    background: rgba(99, 102, 241, 0.2);
}

.artist-search-result:last-child {
    border-bottom: none;
}

.artist-not-found {
    margin-top: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
}

.artist-not-found p {
    color: #cccccc;
    margin: 0 0 10px 0;
    font-size: 14px;
}

.create-artist-btn {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.create-artist-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

/* Artist Modal Styles */
.artist-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

.artist-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10001;
}

.artist-modal-content {
    position: relative;
    max-width: 800px;
    width: 100%;
    background: #111111;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    max-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
    z-index: 10002;
    box-sizing: border-box;
    margin: auto;
}

.artist-modal-body {
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    max-height: calc(100vh - 120px);
    padding-right: 5px;
    box-sizing: border-box;
}

.artist-modal-body::-webkit-scrollbar {
    width: 8px;
}

.artist-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.artist-modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.artist-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.artist-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: #ef4444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    transition: all 0.3s ease;
    z-index: 10;
}

.artist-modal-close:hover {
    background: #ef4444;
    color: #ffffff;
    transform: scale(1.1);
}

/* Label Search Styles */
.label-search-wrapper {
    position: relative;
}

.label-selected-tag {
    margin-top: 10px;
    min-height: 20px;
}

.label-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid #6366f1;
    border-radius: 16px;
    font-size: 13px;
    color: #ffffff;
}

.label-tag span {
    color: #ffffff;
}

.remove-label-tag {
    background: transparent;
    border: none;
    color: #ef4444;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.remove-label-tag:hover {
    color: #ff4444;
}

.label-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-top: 5px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.label-search-result {
    padding: 10px 15px;
    color: #ffffff;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}

.label-search-result:hover {
    background: rgba(99, 102, 241, 0.2);
}

.label-search-result:last-child {
    border-bottom: none;
}

.label-not-found {
    margin-top: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
}

.label-not-found p {
    color: #cccccc;
    margin: 0 0 10px 0;
    font-size: 14px;
}

.create-label-btn {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.create-label-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

/* Label Modal Styles */
.label-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

.label-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10001;
}

.label-modal-content {
    position: relative;
    max-width: 800px;
    width: 100%;
    background: #111111;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    max-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
    z-index: 10002;
    box-sizing: border-box;
    margin: auto;
}

.label-modal-body {
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    max-height: calc(100vh - 120px);
    padding-right: 5px;
    box-sizing: border-box;
}

.label-modal-body::-webkit-scrollbar {
    width: 8px;
}

.label-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.label-modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.label-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.label-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: #ef4444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    transition: all 0.3s ease;
    z-index: 10;
}

.label-modal-close:hover {
    background: #ef4444;
    color: #ffffff;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .artist-modal,
    .label-modal {
        padding: 10px;
    }
    
    .artist-modal-content,
    .label-modal-content {
        max-width: 100%;
        max-height: calc(100vh - 20px);
        padding: 15px;
    }
    
    .artist-modal-body,
    .label-modal-body {
        max-height: calc(100vh - 100px);
    }
}

@media (max-width: 480px) {
    .submit-album-form-wrapper {
        padding: 30px 15px;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .step-title {
        font-size: 24px;
    }
    
    .artist-modal,
    .label-modal {
        padding: 5px;
    }
    
    .artist-modal-content,
    .label-modal-content {
        margin: 0;
        padding: 15px;
        max-height: calc(100vh - 10px);
        border-radius: 15px;
    }
    
    .artist-modal-body,
    .label-modal-body {
        max-height: calc(100vh - 80px);
    }
    
    /* Fix for Physical / Original Release Date field on iPhone */
    .form-group {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
    }
    
    .form-group-half {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .date-input-wrapper {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .date-input-wrapper .date-input {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        -webkit-appearance: none;
        appearance: none;
    }
    
    input[type="date"].date-input {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
    
    /* iOS Safari specific fix for date inputs */
    @supports (-webkit-touch-callout: none) {
        input[type="date"].date-input {
            width: 100% !important;
            max-width: 100% !important;
            min-width: 0 !important;
            -webkit-appearance: none;
        }
        
        .date-input-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            min-width: 0 !important;
        }
    }
}

/* Full-Width Layout Wrappers - Matching submit_album_form */
.submit-album-status-wrapper,
.create-artist-form-wrapper,
.create-label-form-wrapper,
.artist-listing-wrapper,
.label-listing-wrapper,
.royalty-dashboard-wrapper,
.user-home-dashboard-wrapper,
.transactions-wrapper,
.signup-wrapper,
.login-wrapper,
.user-profile-wrapper,
.forgot-password-wrapper,
.otp-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 60px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    /* Remove white space on sides - extend edge-to-edge */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}

/* Prevent horizontal scroll from viewport width trick - only when shortcodes are present */
body:has(.submit-album-status-wrapper),
body:has(.create-artist-form-wrapper),
body:has(.create-label-form-wrapper),
body:has(.artist-listing-wrapper),
body:has(.label-listing-wrapper),
body:has(.royalty-dashboard-wrapper),
body:has(.user-home-dashboard-wrapper),
body:has(.submit-album-form-wrapper),
body:has(.transactions-wrapper),
body:has(.signup-wrapper),
body:has(.login-wrapper),
body:has(.user-profile-wrapper),
body:has(.admin-panel-wrapper),
body:has(.forgot-password-wrapper),
body:has(.otp-wrapper) {
    overflow-x: hidden;
}

/* Fallback for browsers without :has() support */
html:has(.submit-album-status-wrapper),
html:has(.create-artist-form-wrapper),
html:has(.create-label-form-wrapper),
html:has(.artist-listing-wrapper),
html:has(.label-listing-wrapper),
html:has(.royalty-dashboard-wrapper),
html:has(.user-home-dashboard-wrapper),
html:has(.submit-album-form-wrapper),
html:has(.transactions-wrapper),
html:has(.signup-wrapper),
html:has(.login-wrapper),
html:has(.user-profile-wrapper),
html:has(.admin-panel-wrapper),
html:has(.forgot-password-wrapper),
html:has(.otp-wrapper) {
    overflow-x: hidden;
}

/* Remove padding from common WordPress/theme content wrappers when shortcodes are present */
.entry-content .submit-album-status-wrapper,
.entry-content .create-artist-form-wrapper,
.entry-content .create-label-form-wrapper,
.entry-content .artist-listing-wrapper,
.entry-content .label-listing-wrapper,
.entry-content .royalty-dashboard-wrapper,
.entry-content .user-home-dashboard-wrapper,
.entry-content .submit-album-form-wrapper,
.entry-content .transactions-wrapper,
.entry-content .signup-wrapper,
.entry-content .login-wrapper,
.entry-content .user-profile-wrapper,
.entry-content .admin-panel-wrapper,
.entry-content .forgot-password-wrapper,
.entry-content .otp-wrapper,
.site-content .submit-album-status-wrapper,
.site-content .create-artist-form-wrapper,
.site-content .create-label-form-wrapper,
.site-content .artist-listing-wrapper,
.site-content .label-listing-wrapper,
.site-content .royalty-dashboard-wrapper,
.site-content .user-home-dashboard-wrapper,
.site-content .submit-album-form-wrapper,
.site-content .transactions-wrapper,
.site-content .signup-wrapper,
.site-content .login-wrapper,
.site-content .user-profile-wrapper,
.site-content .admin-panel-wrapper,
.site-content .forgot-password-wrapper,
.site-content .otp-wrapper,
.content-area .submit-album-status-wrapper,
.content-area .create-artist-form-wrapper,
.content-area .create-label-form-wrapper,
.content-area .artist-listing-wrapper,
.content-area .label-listing-wrapper,
.content-area .royalty-dashboard-wrapper,
.content-area .user-home-dashboard-wrapper,
.content-area .submit-album-form-wrapper,
.content-area .transactions-wrapper,
.content-area .signup-wrapper,
.content-area .login-wrapper,
.content-area .user-profile-wrapper,
.content-area .admin-panel-wrapper,
.content-area .forgot-password-wrapper,
.content-area .otp-wrapper {
    /* Wrappers already extend edge-to-edge with viewport width trick */
}

/* Override parent container padding/margins (more compatible approach) */
.entry-content,
.site-content,
.content-area,
.main-content,
#content,
#main,
.container,
.wrap {
    /* These will be overridden by the viewport width trick on the wrappers */
}

/* Full-Width Layout Containers - Matching submit_album_form */
.submit-album-status-container,
.create-artist-form-container,
.create-label-form-container,
.artist-listing-container,
.label-listing-container {
    max-width: 900px;
    margin: 0 auto;
    background: #111111;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Dashboards - create container effect for all content */
.royalty-dashboard-wrapper {
    /* Keep viewport width trick for edge-to-edge background */
    /* Override inline styles from template */
    max-width: none !important;
    width: 100vw !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    left: 50% !important;
    right: 50% !important;
    position: relative !important;
    /* Content centering handled by inner elements */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Center all direct children with max-width constraint */
.royalty-dashboard-wrapper > * {
    width: 100%;
    max-width: 900px;
    box-sizing: border-box;
}

.user-home-dashboard-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.user-home-dashboard-wrapper > * {
    width: 100%;
    max-width: 900px;
}

/* Responsive adjustments for full-width wrappers */
@media (max-width: 768px) {
    .submit-album-status-wrapper,
    .create-artist-form-wrapper,
    .create-label-form-wrapper,
    .artist-listing-wrapper,
    .label-listing-wrapper,
    .royalty-dashboard-wrapper,
    .user-home-dashboard-wrapper,
    .transactions-wrapper,
    .signup-wrapper,
    .login-wrapper,
    .forgot-password-wrapper,
    .otp-wrapper {
        padding: 30px 15px;
    }
    
    .submit-album-status-container,
    .create-artist-form-container,
    .create-label-form-container,
    .artist-listing-container,
    .label-listing-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .submit-album-status-wrapper,
    .create-artist-form-wrapper,
    .create-label-form-wrapper,
    .artist-listing-wrapper,
    .label-listing-wrapper,
    .royalty-dashboard-wrapper,
    .user-home-dashboard-wrapper,
    .transactions-wrapper,
    .signup-wrapper,
    .login-wrapper,
    .forgot-password-wrapper,
    .otp-wrapper {
        padding: 20px 10px;
    }
    
    .submit-album-status-container,
    .create-artist-form-container,
    .create-label-form-container,
    .artist-listing-container,
    .label-listing-container {
        padding: 25px 15px;
        border-radius: 15px;
    }
}

/* Banner Section - Premium Redesign */
.dashboard-banner-section {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px 24px;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
}

.dashboard-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.dashboard-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.banner-left {
    width: 100%;
}

.banner-greeting {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.banner-welcome {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.banner-right {
    width: 100%;
    display: flex;
    justify-content: center;
}

.user-photo-thumbnail {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.user-photo-thumbnail .user-avatar-img,
.user-photo-thumbnail img {
    width: 100%;
    max-width: 280px;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.banner-image {
    display: none; /* Removed - using user photo thumbnail instead */
}

.banner-right {
    display: none; /* Hidden on mobile by default */
}

/* Status Cards - Premium Redesign */
.dashboard-status-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.status-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.status-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.12);
}

.status-card:hover::before {
    opacity: 0.6;
}

.status-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.status-card-icon.qc-approval {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
}

.status-card-icon.to-live {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
}

.status-card-icon.in-review {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
}

.status-card-content {
    flex: 1;
    min-width: 0;
}

.status-card-title {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 11px;
}

.status-card-count {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1;
    letter-spacing: -1px;
}

/* Charts Section - Premium Redesign */
.dashboard-charts-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
    width: 100%;
}

.dashboard-chart-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.dashboard-chart-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.chart-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px 0;
    letter-spacing: -0.3px;
}

.chart-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.chart-left {
    order: 2;
    display: flex;
    justify-content: center;
}

.chart-total {
    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-width: 120px;
}

.total-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.total-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -1px;
}

.chart-center {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    max-height: 250px;
    padding: 16px;
}

.chart-center canvas {
    max-width: 100%;
    max-height: 100%;
    height: auto !important;
}

.chart-right {
    order: 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chart-legend {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.legend-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.legend-label {
    flex: 1;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.legend-value {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
}

/* Dashboard Sections - Premium Redesign */
.dashboard-section {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.3px;
}

.see-all-link {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    background: #818cf8;
    border: 1px solid #818cf8;
}

.see-all-link:hover {
    color: #ffffff;
    background: #6366f1;
    border-color: #6366f1;
    transform: translateX(2px);
}

.see-all-link::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.3s ease;
}

.see-all-link:hover::after {
    transform: translateX(3px);
}

/* Desktop: Smaller "See All" button */
@media (min-width: 1024px) {
    .see-all-link {
        font-size: 13px;
        padding: 5px 10px;
        gap: 5px;
    }
    
    .see-all-link::after {
        font-size: 14px;
    }
}

/* Artists & Releases Grid - Premium Redesign */
.artists-grid,
.releases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.artist-card,
.release-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.artist-card:hover,
.release-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.12);
}

.artist-image-wrapper,
.release-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
}

.artist-image-wrapper::after,
.release-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artist-card:hover .artist-image-wrapper::after,
.release-card:hover .release-image-wrapper::after {
    opacity: 1;
}

.artist-image,
.release-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artist-card:hover .artist-image,
.release-card:hover .release-image {
    transform: scale(1.05);
}

.artist-image-placeholder,
.release-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.artist-info,
.release-info {
    text-align: center;
}

.artist-name,
.release-title {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 6px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.3;
}

.release-status {
    font-size: 11px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 12px;
    display: inline-block;
}

.release-status.status-qc_approval {
    background: rgba(234, 179, 8, 0.2);
    color: #fbbf24;
    border: 1px solid #fbbf24;
}

.release-status.status-review {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid #60a5fa;
}

.release-status.status-live {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid #4ade80;
}

.release-status.status-error,
.release-status.status-blocked {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid #f87171;
}

.empty-message {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

/* Mobile: Artists & Releases Sections - Two Columns (Consistent Layout) */
@media (max-width: 639px) {
    .artists-grid,
    .releases-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .artists-grid .artist-card,
    .releases-grid .release-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
        box-sizing: border-box;
        padding: 12px;
        flex: 0 0 auto;
    }
    
    /* Ensure cards don't stretch and maintain proper aspect ratio */
    .artists-grid .artist-image-wrapper,
    .releases-grid .release-image-wrapper {
        width: 100%;
        aspect-ratio: 1;
    }
    
    /* Optimize text sizing for mobile */
    .artists-grid .artist-name,
    .releases-grid .release-title {
        font-size: 13px;
        line-height: 1.3;
    }
    
    /* Prevent any single-column layouts on mobile */
    .artists-grid > *,
    .releases-grid > * {
        grid-column: auto;
    }
}

/* Responsive Design - Mobile First Premium */
@media (min-width: 640px) {
    /* Padding handled by full-width wrapper rules above */
    
    .dashboard-banner-section {
        padding: 40px 32px;
    }
    
    .dashboard-banner-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
    
    .banner-left {
        flex: 1;
    }
    
    .banner-right {
        display: flex; /* Show on tablet and above */
        flex-shrink: 0;
        width: auto;
    }
    
    .user-photo-thumbnail {
        display: flex; /* Show on tablet and above */
        max-width: 240px;
    }
    
    .user-photo-thumbnail .user-avatar-img,
    .user-photo-thumbnail img {
        max-width: 240px;
    }
    
    .banner-image {
        display: none; /* Removed */
    }
    
    .dashboard-status-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .artists-grid,
    .releases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .chart-content-wrapper {
        flex-direction: row;
        align-items: center;
    }
    
    .chart-left {
        order: 1;
        flex-shrink: 0;
    }
    
    .chart-center {
        order: 2;
        flex: 1;
        min-height: 220px;
    }
    
    .chart-right {
        order: 3;
        flex-shrink: 0;
    }
    
    .chart-legend {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1024px) {
    /* Padding handled by full-width wrapper rules above */
    
    .dashboard-banner-section {
        padding: 56px 48px;
    }
    
    .banner-greeting {
        font-size: 42px;
    }
    
    .banner-welcome {
        font-size: 18px;
    }
    
    .user-photo-thumbnail {
        max-width: 320px;
    }
    
    .user-photo-thumbnail .user-avatar-img,
    .user-photo-thumbnail img {
        max-width: 320px;
    }
    
    .banner-image {
        display: none; /* Removed */
    }
    
    .dashboard-status-cards {
        gap: 24px;
    }
    
    .status-card {
        padding: 32px;
    }
    
    .status-card-icon {
        width: 64px;
        height: 64px;
    }
    
    .status-card-title {
        font-size: 12px;
    }
    
    .status-card-count {
        font-size: 40px;
    }
    
    .dashboard-chart-card {
        padding: 32px;
    }
    
    .chart-title {
        font-size: 22px;
        margin-bottom: 28px;
    }
    
    .chart-content-wrapper {
        gap: 32px;
    }
    
    .chart-center {
        min-height: 260px;
    }
    
    .total-value {
        font-size: 32px;
    }
    
    .artists-grid,
    .releases-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .artist-card,
    .release-card {
        padding: 20px;
    }
    
    .artist-name,
    .release-title {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
}

@media (min-width: 1280px) {
    .banner-greeting {
        font-size: 48px;
    }
    
    .user-photo-thumbnail {
        max-width: 360px;
    }
    
    .user-photo-thumbnail .user-avatar-img,
    .user-photo-thumbnail img {
        max-width: 360px;
    }
    
    .banner-image {
        display: none; /* Removed */
    }
    
    .chart-content-wrapper {
        gap: 40px;
    }
    
    .chart-center {
        min-height: 280px;
    }
}
