/**
 * SongLab Influencers - Enhanced Notifications Styles
 */

/* Notification Container */
.songlab-notification-container {
    margin: 20px 0;
    padding: 0;
}

.songlab-notification-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e5e9;
    overflow: hidden;
    position: relative;
}

/* Login Required Notification */
.songlab-login-required {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    color: white !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.songlab-login-required .songlab-notification-card {
    background: transparent;
    border: none;
    box-shadow: none;
}

/* Pending Approval Notification */
.songlab-pending-approval .songlab-notification-card {
    border-left: 5px solid #f39c12;
    background: linear-gradient(135deg, #fffaf0 0%, #ffffff 100%);
}

/* Application Rejected Notification */
.songlab-application-rejected .songlab-notification-card {
    border-left: 5px solid #e74c3c;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

/* Notification Content */
.songlab-notification-content {
    text-align: center;
    padding: 0;
}

.songlab-login-required .songlab-notification-content {
    text-align: center;
}

.songlab-notification-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.songlab-login-required .songlab-notification-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.songlab-notification-icon .dashicons {
    width: 4rem;
    height: 4rem;
    font-size: 4rem;
}

.songlab-notification-message h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    color: #2c3e50;
    text-align: center;
}

.songlab-login-required .songlab-notification-message h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.songlab-notification-content h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    color: #2c3e50;
    text-align: center;
}

.songlab-login-required .songlab-notification-content h3 {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.songlab-notification-message p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0.9;
    line-height: 1.6;
    color: #555;
    text-align: center;
}

.songlab-login-required .songlab-notification-message p {
    color: rgba(0,0,0,0.8);
    opacity: 1;
}

.songlab-notification-content p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0.9;
    line-height: 1.6;
    color: #555;
    text-align: center;
}

.songlab-login-required .songlab-notification-content p {
    color: rgba(0,0,0,0.8);
    opacity: 1;
}

.songlab-notification-sub {
    font-size: 1rem;
    opacity: 0.8;
    font-style: italic;
    color: white;
}

.songlab-login-required .songlab-notification-sub {
    color: rgba(0,0,0,0.7);
    opacity: 1;
}

/* Timeline Styles */
.songlab-approval-timeline {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    position: relative;
}

.songlab-approval-timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e1e5e9;
    z-index: 1;
}

.songlab-timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.songlab-timeline-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e1e5e9;
    color: #7f8c8d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.songlab-timeline-step.completed .songlab-timeline-icon {
    background: #27ae60;
    color: white;
}

.songlab-timeline-step.active .songlab-timeline-icon {
    background: #f39c12;
    color: white;
    animation: pulse 2s infinite;
}

.songlab-timeline-text {
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 500;
}

.songlab-timeline-step.completed .songlab-timeline-text,
.songlab-timeline-step.active .songlab-timeline-text {
    color: #2c3e50;
    font-weight: 600;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Info Sections */
.songlab-review-info,
.songlab-rejection-info,
.songlab-reapply-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #3498db;
}

.songlab-review-info p,
.songlab-rejection-info p,
.songlab-reapply-info p {
    margin: 0 0 10px 0;
    text-align: left;
    font-size: 14px;
}

.songlab-review-info ul,
.songlab-rejection-info ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.songlab-review-info li,
.songlab-rejection-info li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    color: #555;
}

/* Process Steps for Registration */
.songlab-process-steps {
    margin: 30px 0;
}

.songlab-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    text-align: left;
}

.songlab-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3498db;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    margin-right: 20px;
    flex-shrink: 0;
}

.songlab-step-content h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.songlab-step-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
    text-align: left;
}

/* Action Buttons */
.songlab-notification-actions {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.songlab-login-required .songlab-notification-actions {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.songlab-button, .songlab-notification-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 250px;
    justify-content: center;
    border: 2px solid transparent;
    cursor: pointer;
}

.songlab-button-primary, .songlab-btn-primary {
    background: rgba(255,255,255,0.95);
    color: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.songlab-login-required .songlab-button-primary,
.songlab-login-required .songlab-btn-primary {
    background: rgba(255,255,255,0.95);
    color: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.songlab-button-primary:hover, .songlab-btn-primary:hover {
    background: rgba(255,255,255,1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: #333;
}

.songlab-login-required .songlab-button-primary:hover,
.songlab-login-required .songlab-btn-primary:hover {
    background: rgba(255,255,255,1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: #333;
}

.songlab-button-secondary, .songlab-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.8);
}

.songlab-login-required .songlab-button-secondary,
.songlab-login-required .songlab-btn-secondary {
    background: rgba(255,255,255,0.9);
    color: #333;
    border: 2px solid rgba(255,255,255,0.8);
}

.songlab-button-secondary:hover, .songlab-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,1);
    color: white;
    transform: translateY(-2px);
}

.songlab-login-required .songlab-button-secondary:hover,
.songlab-login-required .songlab-btn-secondary:hover {
    background: rgba(255,255,255,1);
    border-color: rgba(255,255,255,1);
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .songlab-login-required {
        margin: 20px auto;
        padding: 20px;
        border-radius: 10px;
    }
    
    .songlab-notification-content {
        padding: 0;
    }
    
    .songlab-notification-content h3 {
        font-size: 2rem;
    }
    
    .songlab-login-required .songlab-notification-content h3 {
        font-size: 2rem;
    }
    
    .songlab-notification-message h2 {
        font-size: 2rem;
    }
    
    .songlab-login-required .songlab-notification-message h2 {
        font-size: 2rem;
    }
    
    .songlab-notification-content p {
        font-size: 1rem;
    }
    
    .songlab-login-required .songlab-notification-content p {
        font-size: 1rem;
    }
    
    .songlab-notification-message p {
        font-size: 1rem;
    }
    
    .songlab-login-required .songlab-notification-message p {
        font-size: 1rem;
    }
    
    .songlab-notification-icon {
        font-size: 3rem;
    }
    
    .songlab-login-required .songlab-notification-icon {
        font-size: 3rem;
    }
    
    .songlab-approval-timeline {
        flex-direction: column;
        gap: 20px;
    }
    
    .songlab-approval-timeline::before {
        display: none;
    }
    
    .songlab-notification-actions {
        gap: 12px;
    }
    
    .songlab-button, .songlab-notification-btn {
        min-width: 200px;
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .songlab-step {
        flex-direction: column;
        text-align: center;
    }
    
    .songlab-step-number {
        margin: 0 auto 15px auto;
    }
}

@media (max-width: 480px) {
    .songlab-login-required {
        margin: 10px;
        padding: 15px;
    }
    
    .songlab-notification-icon {
        font-size: 2.5rem;
    }
    
    .songlab-login-required .songlab-notification-icon {
        font-size: 2.5rem;
    }
    
    .songlab-notification-content h3 {
        font-size: 1.5rem;
    }
    
    .songlab-login-required .songlab-notification-content h3 {
        font-size: 1.5rem;
    }
    
    .songlab-notification-message h2 {
        font-size: 1.5rem;
    }
    
    .songlab-login-required .songlab-notification-message h2 {
        font-size: 1.5rem;
    }
    
    .songlab-button, .songlab-notification-btn {
        min-width: 180px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Animation for notification container */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.songlab-login-required {
    animation: slideInDown 0.6s ease-out;
}

/* Loading Animation */
.songlab-notification-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Alert Styles for Urgent Messages */
.songlab-alert {
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    border-left: 5px solid;
    font-weight: 500;
}

.songlab-alert-info {
    background: #d1ecf1;
    border-color: #3498db;
    color: #0c5460;
}

.songlab-alert-warning {
    background: #fff3cd;
    border-color: #f39c12;
    color: #856404;
}

.songlab-alert-error {
    background: #f8d7da;
    border-color: #e74c3c;
    color: #721c24;
}

.songlab-alert-success {
    background: #d4edda;
    border-color: #27ae60;
    color: #155724;
}
/* Benefits List Styling */
.songlab-benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.songlab-benefits-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}

.songlab-benefits-list li:last-child {
    border-bottom: none;
}

/* Requirements Info */
.songlab-requirements-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid #17a2b8;
}

.songlab-requirements-info h4 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
}

.songlab-requirements-info ul {
    margin: 0;
    padding-left: 20px;
}

.songlab-requirements-info li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    color: #555;
}

/* Dashboard Grid Improvements */
.songlab-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.songlab-influencer-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e5e9;
}

.songlab-influencer-card h2 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}