/* Modern Brand Proposals Styles */

/* Main Title */
.vpMaintitle {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vpMaintitle i {
    font-size: 32px;
    color: #8D3FF2;
}

/* Modern Alert Success */
.modern-alert-success {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 16px;
    margin-bottom: 24px;
    border: 2px solid #6ee7b7;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    animation: slideInDown 0.4s ease-out;
}

.modern-alert-success .alert-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
}

.modern-alert-success .alert-content {
    flex: 1;
    color: #065f46;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.modern-alert-success .alert-close {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #059669;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.modern-alert-success .alert-close:hover {
    background: rgba(16, 185, 129, 0.1);
}

/* Modern Alert Error */
.modern-alert-error {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 16px;
    margin-bottom: 24px;
    border: 2px solid #fca5a5;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    animation: slideInDown 0.4s ease-out;
}

.modern-alert-error .alert-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
}

.modern-alert-error .alert-content {
    flex: 1;
    color: #991b1b;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.modern-alert-error .alert-close {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #dc2626;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.modern-alert-error .alert-close:hover {
    background: rgba(239, 68, 68, 0.1);
}

/* Modern Creator Card */
.modern-creator-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 24px;
    border: 2px solid #f3f4f6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
}

.modern-creator-card:hover {
    border-color: #e9d5ff;
    box-shadow: 0 12px 32px rgba(141, 63, 242, 0.15);
    transform: translateY(-4px);
}

/* Accepted Proposal Card - Highlighted */
.modern-creator-card.accepted-proposal {
    border: 3px solid #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.modern-creator-card.accepted-proposal:hover {
    border-color: #059669;
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.3);
    transform: translateY(-4px);
}

/* Accepted Badge - Small inline badge */
.accepted-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    margin-left: 12px;
    vertical-align: middle;
}

.accepted-badge i {
    font-size: 12px;
}

/* Creator Info Section */
.creator-info-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.creator-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.creator-avatar {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid #f3f4f6;
    transition: all 0.3s ease;
}

.modern-creator-card:hover .creator-avatar {
    border-color: #8D3FF2;
    transform: scale(1.05);
}

.creator-verified-badge {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.creator-verified-badge i {
    color: #ffffff;
    font-size: 16px;
}

.creator-details {
    flex: 1;
    min-width: 0;
}

.creator-name {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.creator-username {
    font-size: 15px;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
}

/* Actions Section */
.creator-actions-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.status-label {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    margin-right: 8px;
}

/* Modern Action Buttons */
.modern-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
    white-space: nowrap;
}

.modern-action-btn i {
    font-size: 16px;
}

/* View Button - Light Purple */
.btn-view {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border-color: #e9d5ff;
    color: #7c3aed;
}

.btn-view:hover {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    border-color: #8D3FF2;
    color: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(141, 63, 242, 0.2);
}

/* Accept Button - Green */
.btn-accept {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: #059669;
    color: #ffffff;
}

.btn-accept:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border-color: #047857;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

/* Reject Button - Red */
.btn-reject {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-color: #dc2626;
    color: #ffffff;
}

.btn-reject:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-color: #b91c1c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
}

/* Progress Button - Dark Purple */
.btn-progress {
    background: linear-gradient(135deg, #8D3FF2 0%, #7C3AED 100%);
    border-color: #7C3AED;
    color: #ffffff;
}

.btn-progress:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    border-color: #6D28D9;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(141, 63, 242, 0.4);
}

/* Rejected Button - Disabled */
.btn-rejected {
    background: #f3f4f6;
    border-color: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-rejected:hover {
    transform: none;
    box-shadow: none;
}

/* Empty State */
.empty-proposals-state {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border-radius: 20px;
    border: 2px dashed #e9d5ff;
}

.empty-proposals-state i {
    font-size: 64px;
    color: #c4b5fd;
    margin-bottom: 24px;
    display: block;
}

.empty-proposals-state h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.empty-proposals-state p {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

/* Pagination Results */
.showing_results {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 15px;
    color: #6b7280;
    font-weight: 500;
}

.showing_results span {
    font-weight: 700;
    color: #8D3FF2;
}

/* Responsive */
@media (max-width: 992px) {
    .creator-actions-section {
        justify-content: flex-start;
        margin-top: 16px;
    }
}

@media (max-width: 768px) {
    .modern-creator-card {
        padding: 20px;
    }

    .creator-info-section {
        flex-direction: column;
        text-align: center;
    }

    .creator-avatar {
        width: 80px;
        height: 80px;
    }

    .creator-name {
        font-size: 20px;
        justify-content: center;
    }

    .creator-actions-section {
        flex-direction: column;
        width: 100%;
    }

    .modern-action-btn {
        width: 100%;
        justify-content: center;
    }

    .status-label {
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
    }
}

@media (max-width: 576px) {
    .vpMaintitle {
        font-size: 24px;
    }

    .creator-avatar {
        width: 70px;
        height: 70px;
    }

    .creator-name {
        font-size: 18px;
    }

    .creator-username {
        font-size: 14px;
    }

    .modern-action-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.modern-creator-card {
    animation: fadeInUp 0.4s ease-out backwards;
}

.modern-creator-card:nth-child(1) { animation-delay: 0.05s; }
.modern-creator-card:nth-child(2) { animation-delay: 0.1s; }
.modern-creator-card:nth-child(3) { animation-delay: 0.15s; }
.modern-creator-card:nth-child(4) { animation-delay: 0.2s; }
.modern-creator-card:nth-child(5) { animation-delay: 0.25s; }
.modern-creator-card:nth-child(6) { animation-delay: 0.3s; }
