/* ===================================
   PROMOTE INTELLIGENCE ADMIN PANEL
   =================================== */

:root {
    --promote-primary: #7FFF00;
    --promote-primary-dark: #6CD300;
    --promote-bg: #0F2A2A;
    --promote-bg-light: #1A3535;
    --promote-border: #2A4A4A;
    --promote-text: #FFFFFF;
    --promote-text-muted: #7A8B8B;
}

/* ===================================
   PROMOTE SECTION CONTAINER
   =================================== */

.promote-management-section {
    padding: 40px 0;
    min-height: 100vh;
}

.promote-management-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--promote-border);
}

.promote-management-section .section-header h2 {
    font-size: 2rem;
    color: var(--promote-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.promote-management-section .section-header h2::before {
    content: '🎯';
    font-size: 2.2rem;
}

.promote-management-section .header-actions {
    display: flex;
    gap: 12px;
}

.btn-promote-action {
    padding: 10px 20px;
    background: var(--promote-bg-light);
    border: 1px solid var(--promote-border);
    border-radius: 8px;
    color: var(--promote-text);
    cursor: pointer;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-promote-action:hover {
    background: var(--promote-border);
    border-color: var(--promote-primary);
    transform: translateY(-2px);
}

.btn-promote-action.primary {
    background: linear-gradient(135deg, var(--promote-primary-dark), var(--promote-primary));
    color: var(--promote-bg);
    border-color: var(--promote-primary);
    font-weight: 600;
}

.btn-promote-action.primary:hover {
    box-shadow: 0 4px 20px rgba(127, 255, 0, 0.3);
}

/* ===================================
   STATISTICS GRID
   =================================== */

.promote-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.promote-stat-card {
    background: var(--promote-bg-light);
    border: 1px solid var(--promote-border);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.promote-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(127, 255, 0, 0.15);
    border-color: var(--promote-primary);
}

.promote-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--promote-primary-dark), var(--promote-primary));
}

.promote-stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.promote-stat-icon {
    font-size: 2rem;
}

.promote-stat-trend {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.promote-stat-trend.up {
    background: rgba(127, 255, 0, 0.1);
    color: var(--promote-primary);
}

.promote-stat-trend.down {
    background: rgba(255, 68, 68, 0.1);
    color: #FF4444;
}

.promote-stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--promote-primary);
    margin-bottom: 5px;
}

.promote-stat-label {
    font-size: 0.9rem;
    color: var(--promote-text-muted);
}

/* ===================================
   FILTERS BAR
   =================================== */

.promote-filters-bar {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--promote-bg-light);
    border: 1px solid var(--promote-border);
    border-radius: 12px;
}

.promote-filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 180px;
}

.promote-filter-group.search-group {
    flex: 1;
    min-width: 250px;
}

.promote-filter-group label {
    font-size: 0.85rem;
    color: var(--promote-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promote-filter-group select,
.promote-filter-group input {
    padding: 10px 14px;
    background: var(--promote-bg);
    border: 1px solid var(--promote-border);
    border-radius: 8px;
    color: var(--promote-text);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.promote-filter-group select:focus,
.promote-filter-group input:focus {
    outline: none;
    border-color: var(--promote-primary);
    box-shadow: 0 0 0 3px rgba(127, 255, 0, 0.1);
}

.promote-filter-group input::placeholder {
    color: var(--promote-text-muted);
}

/* ===================================
   ASSESSMENTS TABLE
   =================================== */

.promote-table-container {
    background: var(--promote-bg-light);
    border: 1px solid var(--promote-border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.promote-table {
    width: 100%;
    border-collapse: collapse;
}

.promote-table thead {
    background: var(--promote-bg);
    border-bottom: 2px solid var(--promote-border);
}

.promote-table thead th {
    padding: 16px 12px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--promote-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promote-table tbody tr {
    border-bottom: 1px solid var(--promote-border);
    transition: all 0.2s;
}

.promote-table tbody tr:hover {
    background: rgba(127, 255, 0, 0.05);
}

.promote-table tbody td {
    padding: 16px 12px;
    color: var(--promote-text);
    font-size: 0.9rem;
}

.promote-table tbody tr:last-child {
    border-bottom: none;
}

/* Company info cell */
.company-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.company-name {
    font-weight: 600;
    color: var(--promote-text);
    font-size: 0.95rem;
}

.company-industry {
    font-size: 0.8rem;
    color: var(--promote-text-muted);
}

/* Contact info cell */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-name {
    font-weight: 500;
    color: var(--promote-text);
}

.contact-email {
    font-size: 0.8rem;
    color: var(--promote-text-muted);
    font-family: monospace;
}

/* Priority badge */
.priority-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.priority-badge.LOW {
    background: rgba(127, 255, 0, 0.2);
    color: var(--promote-primary);
}

.priority-badge.MEDIUM {
    background: rgba(255, 184, 0, 0.2);
    color: #FFB800;
}

.priority-badge.HIGH {
    background: rgba(255, 68, 68, 0.2);
    color: #FF4444;
}

.priority-badge.URGENT {
    background: rgba(255, 0, 0, 0.3);
    color: #FF0000;
    animation: priority-pulse 2s infinite;
}

@keyframes priority-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Status badge */
.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.status-badge.new {
    background: rgba(0, 212, 255, 0.2);
    color: #00D4FF;
}

.status-badge.contacted {
    background: rgba(255, 184, 0, 0.2);
    color: #FFB800;
}

.status-badge.qualified {
    background: rgba(127, 255, 0, 0.2);
    color: var(--promote-primary);
}

.status-badge.converted {
    background: rgba(0, 255, 136, 0.2);
    color: #00FF88;
}

.status-badge.archived {
    background: rgba(122, 139, 139, 0.2);
    color: var(--promote-text-muted);
}

/* Scores display */
.scores-mini {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.score-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 10px;
    background: rgba(127, 255, 0, 0.1);
    border: 1px solid rgba(127, 255, 0, 0.3);
    border-radius: 8px;
}

.score-chip-label {
    font-size: 0.7rem;
    color: var(--promote-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.score-chip-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--promote-primary);
}

/* Date display */
.date-display {
    font-size: 0.85rem;
    color: var(--promote-text-muted);
}

.date-display strong {
    color: var(--promote-text);
    display: block;
    margin-bottom: 2px;
}

/* Action buttons */
.promote-actions {
    display: flex;
    gap: 8px;
}

.btn-action {
    padding: 8px 12px;
    background: var(--promote-bg);
    border: 1px solid var(--promote-border);
    border-radius: 6px;
    color: var(--promote-text);
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-action:hover {
    background: var(--promote-border);
    border-color: var(--promote-primary);
    transform: scale(1.05);
}

.btn-action.view {
    border-color: var(--promote-primary);
    color: var(--promote-primary);
}

.btn-action.view:hover {
    background: var(--promote-primary);
    color: var(--promote-bg);
}

/* ===================================
   ASSESSMENT DETAIL MODAL
   =================================== */

.promote-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    overflow-y: auto;
    padding: 40px 20px;
}

.promote-modal.active {
    display: flex;
    align-items: start;
    justify-content: center;
}

.promote-modal-content {
    background: var(--promote-bg);
    border: 1px solid var(--promote-border);
    border-radius: 16px;
    max-width: 1200px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modal-slide-in 0.3s ease-out;
}

@keyframes modal-slide-in {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.promote-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 2px solid var(--promote-border);
    background: linear-gradient(135deg, rgba(127, 255, 0, 0.05), rgba(0, 212, 255, 0.05));
}

.promote-modal-title {
    font-size: 1.8rem;
    color: var(--promote-primary);
    margin: 0;
}

.promote-modal-subtitle {
    font-size: 0.95rem;
    color: var(--promote-text-muted);
    margin-top: 5px;
}

.btn-close-modal {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 68, 68, 0.2);
    color: #FF4444;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close-modal:hover {
    background: #FF4444;
    color: white;
    transform: rotate(90deg);
}

.promote-modal-body {
    padding: 30px;
}

/* Modal sections */
.modal-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--promote-border);
}

.modal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.modal-section-title {
    font-size: 1.3rem;
    color: var(--promote-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Score gauges grid */
.scores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.score-gauge {
    background: var(--promote-bg-light);
    border: 1px solid var(--promote-border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.score-gauge-label {
    font-size: 0.85rem;
    color: var(--promote-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.score-gauge-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
}

.score-gauge-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 700;
    color: var(--promote-primary);
}

/* Business details grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.detail-item {
    background: var(--promote-bg-light);
    border: 1px solid var(--promote-border);
    border-radius: 8px;
    padding: 15px;
}

.detail-label {
    font-size: 0.8rem;
    color: var(--promote-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.detail-value {
    font-size: 1rem;
    color: var(--promote-text);
    font-weight: 500;
}

/* Opportunities list */
.opportunities-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.opportunity-item {
    background: var(--promote-bg-light);
    border-left: 4px solid var(--promote-primary);
    border-radius: 8px;
    padding: 20px;
}

.opportunity-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
}

.opportunity-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--promote-text);
}

.opportunity-description {
    color: var(--promote-text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
}

.opportunity-evidence {
    background: rgba(0, 212, 255, 0.05);
    border-left: 2px solid #00D4FF;
    padding: 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--promote-text-muted);
}

/* Status workflow */
.status-workflow {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-status {
    padding: 10px 20px;
    border: 1px solid var(--promote-border);
    border-radius: 8px;
    background: var(--promote-bg-light);
    color: var(--promote-text);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-status:hover {
    background: var(--promote-primary);
    color: var(--promote-bg);
    border-color: var(--promote-primary);
}

.btn-status.active {
    background: var(--promote-primary);
    color: var(--promote-bg);
    border-color: var(--promote-primary);
    font-weight: 600;
}

/* Notes section */
.notes-area {
    width: 100%;
    min-height: 100px;
    padding: 15px;
    background: var(--promote-bg-light);
    border: 1px solid var(--promote-border);
    border-radius: 8px;
    color: var(--promote-text);
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
}

.notes-area:focus {
    outline: none;
    border-color: var(--promote-primary);
    box-shadow: 0 0 0 3px rgba(127, 255, 0, 0.1);
}

/* ===================================
   PAGINATION
   =================================== */

.promote-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.pagination-btn {
    padding: 10px 16px;
    background: var(--promote-bg-light);
    border: 1px solid var(--promote-border);
    border-radius: 8px;
    color: var(--promote-text);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--promote-border);
    border-color: var(--promote-primary);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn.active {
    background: var(--promote-primary);
    color: var(--promote-bg);
    border-color: var(--promote-primary);
    font-weight: 700;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    .promote-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .promote-filters-bar {
        flex-direction: column;
    }
    
    .promote-filter-group {
        min-width: 100%;
    }
    
    .promote-table-container {
        overflow-x: auto;
    }
    
    .promote-table {
        min-width: 800px;
    }
    
    .promote-modal-content {
        margin: 0;
        border-radius: 0;
    }
    
    .scores-grid {
        grid-template-columns: 1fr;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   LOADING & EMPTY STATES
   =================================== */

.promote-loading {
    text-align: center;
    padding: 60px 20px;
    color: var(--promote-text-muted);
}

.promote-loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--promote-border);
    border-top-color: var(--promote-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.promote-empty {
    text-align: center;
    padding: 60px 20px;
}

.promote-empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.promote-empty-title {
    font-size: 1.5rem;
    color: var(--promote-text);
    margin-bottom: 10px;
}

.promote-empty-subtitle {
    color: var(--promote-text-muted);
    margin-bottom: 30px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
/* ===================================
   STATUS & TIER BADGES
   =================================== */

.promo-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Status Badges */
.promo-badge-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.promo-badge-approved {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.promo-badge-active {
    background: rgba(0, 200, 83, 0.2);
    color: #00C853;
    border: 1px solid rgba(0, 200, 83, 0.3);
}

.promo-badge-rejected {
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.promo-badge-completed {
    background: rgba(96, 125, 139, 0.2);
    color: #607D8B;
    border: 1px solid rgba(96, 125, 139, 0.3);
}

/* Tier Badges */
.promo-badge-tier-free {
    background: rgba(158, 158, 158, 0.2);
    color: #9E9E9E;
    border: 1px solid rgba(158, 158, 158, 0.3);
}

.promo-badge-tier-featured {
    background: rgba(255, 152, 0, 0.2);
    color: #FF9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.promo-badge-tier-premium {
    background: rgba(127, 255, 0, 0.2);
    color: #7FFF00;
    border: 1px solid rgba(127, 255, 0, 0.3);
}

/* Display Size Badges */
.promo-badge-size-small {
    background: rgba(66, 153, 225, 0.15);
    color: #4299E1;
    border: 1px solid rgba(66, 153, 225, 0.3);
}

.promo-badge-size-medium {
    background: rgba(72, 187, 120, 0.15);
    color: #48BB78;
    border: 1px solid rgba(72, 187, 120, 0.3);
}

.promo-badge-size-large {
    background: rgba(237, 137, 54, 0.15);
    color: #ED8936;
    border: 1px solid rgba(237, 137, 54, 0.3);
}

.promo-badge-size-full {
    background: rgba(159, 122, 234, 0.15);
    color: #9F7AEA;
    border: 1px solid rgba(159, 122, 234, 0.3);
}

/* Form Controls */
.form-control {
    width: 100%;
    padding: 8px 12px;
    background: var(--promote-bg-light);
    border: 1px solid var(--promote-border);
    border-radius: 6px;
    color: var(--promote-text);
    font-size: 0.9rem;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--promote-primary);
}

/* Action Buttons */
.promo-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.btn-action {
    background: transparent;
    border: 1px solid var(--promote-border);
    color: var(--promote-text);
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-action:hover {
    background: var(--promote-bg-light);
    border-color: var(--promote-primary);
}

.btn-action.btn-success {
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #4CAF50;
    background: transparent;
}

.btn-action.btn-success:hover {
    background: rgba(76, 175, 80, 0.15);
    border-color: #4CAF50;
    color: #66BB6A;
}

.btn-action.btn-danger {
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: #F44336;
    background: transparent;
}

.btn-action.btn-danger:hover {
    background: rgba(244, 67, 54, 0.15);
    border-color: #F44336;
    color: #FF5252;
}

.btn-action.btn-delete {
    border-color: rgba(158, 158, 158, 0.3);
    color: #9E9E9E;
}

.btn-action.btn-delete:hover {
    background: rgba(244, 67, 54, 0.12);
    border-color: #F44336;
    color: #F44336;
    transform: scale(1.05);
}

.promo-event-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.promo-event-info strong {
    color: var(--promote-text);
    font-size: 0.95rem;
}

.promo-event-info small {
    font-size: 0.8rem;
}
/* ===================================
   DETAILS MODAL
   =================================== */

.promo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.2s ease;
}

.promo-modal-content {
    background: var(--promote-bg);
    border: 2px solid var(--promote-border);
    border-radius: 12px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.promo-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 2px solid var(--promote-border);
}

.promo-modal-header h2 {
    margin: 0;
    color: var(--promote-primary);
    font-size: 1.5rem;
}

.promo-modal-close {
    background: transparent;
    border: none;
    color: var(--promote-text);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s;
}

.promo-modal-close:hover {
    background: var(--promote-bg-light);
    color: var(--promote-primary);
}

.promo-modal-body {
    padding: 24px;
}

.promo-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.promo-detail-section {
    background: var(--promote-bg-light);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--promote-border);
}

.promo-detail-section.full-width {
    grid-column: 1 / -1;
}

.promo-detail-section h3 {
    margin: 0 0 16px 0;
    color: var(--promote-primary);
    font-size: 1.1rem;
}

.promo-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--promote-border);
    gap: 12px;
}

.promo-detail-item:last-child {
    border-bottom: none;
}

.promo-detail-item label {
    color: var(--promote-text-muted);
    font-weight: 600;
    flex-shrink: 0;
    min-width: 120px;
}

.promo-detail-item span {
    color: var(--promote-text);
    flex: 1;
    text-align: right;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Badge styles inside promo-detail-item */
.promo-detail-item .badge {
    display: inline-block;
    position: static;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.promo-detail-item .badge-active,
.promo-detail-item .badge-pending,
.promo-detail-item .badge-approved {
    background: var(--promote-success);
    color: #fff;
}

.promo-detail-item .badge-rejected {
    background: var(--promote-danger);
    color: #fff;
}

.promo-detail-item .badge-tier-free {
    background: rgba(127, 255, 0, 0.2);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.promo-detail-item .badge-tier-featured {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid #ffa500;
}

.promo-detail-item .badge-tier-premium {
    background: rgba(138, 43, 226, 0.2);
    color: #8a2be2;
    border: 1px solid #8a2be2;
}

.promo-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid var(--promote-border);
}

.btn-primary, .btn-secondary, .btn-danger {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: var(--promote-primary);
    color: #000;
}

.btn-primary:hover {
    background: var(--promote-primary-dark);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--promote-border);
    color: var(--promote-text);
}

.btn-secondary:hover {
    background: var(--promote-bg-light);
}

.btn-danger {
    background: #F44336;
    color: white;
}

.btn-danger:hover {
    background: #D32F2F;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   DELETE MODAL SPECIFIC STYLES
   =================================== */

.delete-modal .promo-modal-header.delete-header {
    border-bottom: 2px solid rgba(244, 67, 54, 0.2);
    padding: 20px 24px;
}

.delete-warning-box {
    background: rgba(244, 67, 54, 0.08);
    border: 1px solid rgba(244, 67, 54, 0.25);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.delete-event-info {
    background: var(--promote-bg-light);
    border: 1px solid var(--promote-border);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.delete-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.delete-info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.delete-info-label {
    color: var(--promote-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.delete-info-value {
    color: var(--promote-text);
    font-size: 0.95rem;
    text-align: right;
    max-width: 60%;
    word-break: break-word;
}

.promo-modal-actions.delete-actions {
    padding: 20px 24px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--promote-border);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin: 0;
}

.btn-cancel {
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid var(--promote-border);
    background: transparent;
    color: var(--promote-text);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cancel:hover {
    background: var(--promote-bg-light);
    border-color: var(--promote-primary);
    color: var(--promote-primary);
    transform: translateY(-1px);
}

.btn-delete-confirm {
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: linear-gradient(135deg, #F44336 0%, #D32F2F 100%);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

.btn-delete-confirm:hover {
    background: linear-gradient(135deg, #E53935 0%, #C62828 100%);
    box-shadow: 0 6px 20px rgba(244, 67, 54, 0.4);
    transform: translateY(-2px);
}

.btn-delete-confirm:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(244, 67, 54, 0.3);
}
/* ===================================
   NOTIFICATION SYSTEM
   =================================== */

.promo-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 320px;
    max-width: 450px;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    z-index: 10000;
    transform: translateX(500px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid;
}

.promo-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.promo-notification-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.promo-notification-message {
    flex: 1;
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

.promo-notification-close {
    flex-shrink: 0;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-notification-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

/* Success Notification */
.promo-notification-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.95) 0%, rgba(5, 150, 105, 0.95) 100%);
    border-color: rgba(52, 211, 153, 0.5);
}

.promo-notification-success .promo-notification-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

/* Error Notification */
.promo-notification-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.95) 0%, rgba(220, 38, 38, 0.95) 100%);
    border-color: rgba(248, 113, 113, 0.5);
}

.promo-notification-error .promo-notification-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

/* Info Notification */
.promo-notification-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95) 0%, rgba(37, 99, 235, 0.95) 100%);
    border-color: rgba(96, 165, 250, 0.5);
}

.promo-notification-info .promo-notification-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

/* Animation for multiple notifications */
.promo-notification:nth-child(2) {
    top: 100px;
}

.promo-notification:nth-child(3) {
    top: 180px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .promo-notification {
        left: 20px;
        right: 20px;
        min-width: unset;
        max-width: unset;
    }
}