/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary: #96247B;
    --primary-dark: #6b1659;
    --primary-light: #b84a9d;
    --secondary: #64748b;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Neutrals */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
    color: var(--gray-900);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #6b1659 0%, #96247B 100%);
    color: white;
    padding: 28px 0;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 2px;
}

.logo .subtitle {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 400;
    display: block;
}

.header-stats {
    display: flex;
    gap: 16px;
    align-items: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 140px;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    display: block;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Upload Button in Header */
.btn-upload-header {
    background: white;
    color: var(--primary);
    border: none;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-upload-header:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-upload-header svg {
    flex-shrink: 0;
}

/* Filters Section */
.filters-section {
    background: white;
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.filters-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-group label svg {
    color: var(--primary);
}

.filter-select,
.search-input {
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    background: white;
    transition: all 0.2s ease;
    outline: none;
}

.filter-select:hover,
.search-input:hover {
    border-color: var(--gray-300);
}

.filter-select:focus,
.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Main Content */
.main-content {
    padding: 32px 0 64px 0;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.results-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
}

.results-count {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

/* Table - NO HORIZONTAL SCROLL */
.table-wrapper {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.table-scroll {
    overflow-x: auto;
    overflow-y: visible;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    table-layout: auto;
}

.data-table thead {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-bottom: 2px solid var(--gray-200);
}

.data-table th {
    padding: 14px 12px;
    text-align: left;
    font-weight: 700;
    color: var(--gray-700);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.data-table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--gray-100);
    vertical-align: middle;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.data-table tbody tr {
    transition: all 0.2s ease;
}

.data-table tbody tr:hover {
    background: var(--gray-50);
}

/* Specific column widths to prevent overflow */
.data-table th:nth-child(1),
/* Advertiser */
.data-table td:nth-child(1) {
    min-width: 150px;
    max-width: 180px;
}

.data-table th:nth-child(2),
/* Product */
.data-table td:nth-child(2) {
    min-width: 120px;
    max-width: 150px;
}

.data-table th:nth-child(3),
/* Category */
.data-table td:nth-child(3) {
    min-width: 110px;
    max-width: 130px;
}

.data-table th:nth-child(4),
/* Product Group */
.data-table td:nth-child(4) {
    min-width: 120px;
    max-width: 150px;
}

.data-table th:nth-child(5),
/* Publication */
.data-table td:nth-child(5) {
    min-width: 120px;
    max-width: 140px;
}

.data-table th:nth-child(6),
/* Edition */
.data-table td:nth-child(6) {
    min-width: 90px;
    max-width: 110px;
}

.data-table th:nth-child(7),
/* Position */
.data-table td:nth-child(7) {
    min-width: 100px;
    max-width: 120px;
}

.data-table th:nth-child(8),
/* Vol SQCM */
.data-table td:nth-child(8) {
    min-width: 80px;
    max-width: 100px;
}

.data-table th:nth-child(9),
/* TAM Cost */
.data-table td:nth-child(9) {
    min-width: 90px;
    max-width: 110px;
}

.data-table th:nth-child(10),
/* Actions */
.data-table td:nth-child(10) {
    min-width: 130px;
    max-width: 150px;
}

.number-col {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.action-col {
    text-align: center;
}

/* Advertiser Styling */
.advertiser-name {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 13px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-name {
    font-size: 12px;
    color: var(--gray-600);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.badge-primary {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

/* Position Badge */
.position-badge {
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    background: var(--gray-100);
    color: var(--gray-700);
    display: inline-block;
    white-space: nowrap;
}

/* Values */
.cost-value {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 13px;
}

.sqcm-value {
    font-weight: 600;
    color: var(--primary);
    font-size: 13px;
}

/* Button */
.btn {
    padding: 8px 16px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    outline: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 600px;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--gray-400);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--gray-100);
    color: var(--gray-600);
}

.modal-body {
    padding: 24px;
}

.company-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.company-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
}

.info-placeholder {
    text-align: center;
    padding: 40px 20px;
}

.info-placeholder svg {
    color: var(--gray-300);
    margin-bottom: 16px;
}

.info-placeholder h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.text-muted {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 16px;
}

.feature-list {
    text-align: left;
    display: inline-block;
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    color: var(--gray-700);
    font-size: 14px;
}

/* Loading State */
.loading-state {
    text-align: center;
    padding: 60px 20px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state svg {
    color: var(--gray-300);
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--gray-600);
    font-size: 14px;
}

/* Upload Notice */
.upload-notice {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
}

.upload-notice svg {
    color: var(--gray-300);
    margin-bottom: 20px;
}

.upload-notice h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.upload-notice p {
    color: var(--gray-600);
    font-size: 15px;
    margin-bottom: 24px;
}

.upload-notice .file-info {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 12px;
}

/* Upload Progress */
.upload-progress {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.upload-progress .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.upload-progress p {
    color: var(--gray-700);
    font-size: 15px;
    font-weight: 500;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: white;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2000;
    border-left: 4px solid var(--success);
    max-width: 400px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.error {
    border-left-color: var(--danger);
}

.toast svg {
    color: var(--success);
    flex-shrink: 0;
}

.toast.error svg {
    color: var(--danger);
}

.toast span {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-900);
}

/* Responsive */
@media (max-width: 1200px) {
    .data-table {
        font-size: 12px;
    }

    .data-table th,
    .data-table td {
        padding: 12px 10px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-stats {
        width: 100%;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1;
        min-width: 120px;
    }

    .btn-upload-header {
        width: 100%;
        justify-content: center;
    }

    .filters-container {
        grid-template-columns: 1fr;
    }

    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .table-scroll {
        overflow-x: auto;
    }

    .toast {
        right: 12px;
        left: 12px;
        bottom: 12px;
    }
}

/* Contact Modal Styles */
.contact-loading {
    text-align: center;
    padding: 40px 20px;
}

.contact-loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

.contact-error {
    text-align: center;
    padding: 40px 20px;
}

.contact-error svg {
    color: var(--danger);
    margin-bottom: 16px;
}

.contact-error p {
    color: var(--gray-600);
    font-size: 14px;
}

/* Contacts List */
.contacts-list {
    max-height: 500px;
    overflow-y: auto;
}

.contact-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.contact-card:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.contact-card:last-child {
    margin-bottom: 0;
}

.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.contact-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.contact-title {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-700);
}

.contact-detail svg {
    color: var(--primary);
    flex-shrink: 0;
}

.contact-detail a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-detail a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Modal sizing for contacts */
.modal-content {
    max-width: 700px;
}

.modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

/* Contacted This Week Section */
.contacted-section {
    background: white;
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0;
}

.contacted-container {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 20px;
}

.contacted-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.contacted-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 4px 0;
}

.contacted-subtitle {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
}

.btn-secondary {
    background: white;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

.contacted-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 40px;
}

.contacted-empty {
    color: var(--gray-500);
    font-size: 14px;
    font-style: italic;
    margin: 0;
    padding: 10px 0;
}

.contacted-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 6px 12px;
    transition: all 0.2s;
}

.contacted-item:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
}

.contacted-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contacted-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-900);
}

.contacted-date {
    font-size: 11px;
    color: var(--gray-500);
}

.btn-remove {
    background: none;
    border: none;
    padding: 2px;
    cursor: pointer;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.btn-remove:hover {
    color: var(--danger);
}

@media (max-width: 768px) {
    .contacted-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .btn-secondary {
        width: 100%;
    }
}

/* Toggle Button */
.contacted-toggle {
    width: 100%;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    transition: all 0.2s;
    font-family: inherit;
}

.contacted-toggle:hover {
    border-color: var(--primary);
    background: var(--gray-50);
}

.contacted-toggle.active {
    border-color: var(--primary);
}

.contacted-toggle .toggle-icon {
    transition: transform 0.3s ease;
    color: var(--gray-500);
}

.contacted-toggle.active .toggle-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.contacted-container {
    margin-top: 12px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

/* Updated contacted section spacing */
.contacted-section {
    padding: 16px 0;
}

.contacted-header {
    margin-bottom: 12px;
}

.contacted-header h3 {
    font-size: 16px;
    margin: 0;
}

/* Additional styles for availability check and new buttons */

.check-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.check-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.3);
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    margin: 0 2px;
}

.badge-success {
    background: #dcfce7;
    color: #166534;
}

.badge-unavailable {
    background: #fee2e2;
    color: #991b1b;
}

.badge-error {
    background: #fee2e2;
    color: #991b1b;
}

.action-btn {
    background: linear-gradient(135deg, #b84a9d 0%, #96247B 100%);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    margin: 2px 0;
    min-width: 120px;
    transition: all 0.2s;
}

.action-btn:hover:not(.disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.email-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.email-btn:hover {
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

.phone-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.phone-btn:hover {
    box-shadow: 0 4px 8px rgba(139, 92, 246, 0.3);
}

.linkedin-btn {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.linkedin-btn:hover {
    box-shadow: 0 4px 8px rgba(14, 165, 233, 0.3);
}

.action-btn.disabled {
    background: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
    opacity: 0.6;
}

.loading {
    color: #f59e0b;
    font-weight: 500;
    font-style: italic;
}

/* Update table to accommodate new columns */
#data-table {
    font-size: 13px;
}

#data-table th:nth-child(7) {
    min-width: 180px;
}

#data-table th:nth-child(8) {
    min-width: 150px;
}

/* PROPER Upload Notice Styling */
.upload-notice {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    text-align: center;
    min-height: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.upload-notice svg {
    width: 64px;
    height: 64px;
    stroke: #cbd5e1;
    margin-bottom: 24px;
}

.upload-notice h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.upload-notice p {
    font-size: 16px;
    color: #64748b;
    margin: 0 0 32px 0;
}

.upload-notice .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    color: white;
    background: linear-gradient(135deg, #b84a9d 0%, #96247B 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.upload-notice .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.upload-notice .btn-primary svg {
    width: 20px;
    height: 20px;
    stroke: white;
    margin: 0;
}

.upload-notice .file-info {
    font-size: 14px;
    color: #94a3b8;
    margin-top: 16px;
}

/* Toast notification styling - MAKE SURE IT'S VISIBLE */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: none;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    min-width: 300px;
    max-width: 500px;
    animation: slideIn 0.3s ease-out;
    font-family: 'Inter', sans-serif;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.success {
    border-left: 4px solid #10b981;
}

.toast.success svg {
    stroke: #10b981;
}

.toast.error {
    border-left: 4px solid #ef4444;
}

.toast.error svg {
    stroke: #ef4444;
}

.toast.warning {
    border-left: 4px solid #f59e0b;
}

.toast.warning svg {
    stroke: #f59e0b;
}

.toast.info {
    border-left: 4px solid #96247B;
}

.toast.info svg {
    stroke: #96247B;
}

.toast svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.toast span {
    flex: 1;
    color: #1e293b;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}