/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.toast {
    background-color: var(--bg-secondary);
    color: var(--text-main);
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: toastSlideIn 0.4s forwards;
}

.toast.show {
    transform: translateX(0);
}

.toast.success { border-left: 4px solid var(--color-primary); }
.toast.error { border-left: 4px solid var(--color-red); }
.toast.info { border-left: 4px solid var(--color-blue); }

.toast i { font-size: 20px; }
.toast.success i { color: var(--color-primary); }
.toast.error i { color: var(--color-red); }
.toast.info i { color: var(--color-blue); }

@keyframes toastSlideIn {
    to { transform: translateX(0); }
}

/* Custom Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal-card {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 400px;
    width: 90%;
    text-align: center;
    animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.modal-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.modal-btn {
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.2s;
}

.modal-btn.confirm {
    background: var(--color-red);
    color: white;
}

.modal-btn.cancel {
    background: var(--bg-accent);
    color: var(--text-muted);
}

.modal-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Upload Requirements List */
.upload-req-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.upload-req-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.upload-req-item i {
    color: var(--color-primary);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.upload-req-item b {
    color: var(--text-main);
    font-weight: 600;
}
