/* Progress Bar Styles */
.progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(26, 26, 46, 0.95);
    padding: 10px 20px;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.progress-bar-container.progress-bar-hiding {
    transform: translateY(-100%);
}

.progress-bar-wrapper {
    position: relative;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
    border-radius: 4px;
}

.progress-bar-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.progress-bar-message {
    margin-top: 8px;
    color: #aaa;
    font-size: 0.9rem;
    text-align: center;
}

/* Toast Notification Styles */
.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(26, 26, 46, 0.95);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    min-width: 300px;
}

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

.toast-success {
    border-color: rgba(76, 175, 80, 0.5);
    background: rgba(26, 46, 26, 0.95);
}

.toast-error {
    border-color: rgba(244, 67, 54, 0.5);
    background: rgba(46, 26, 26, 0.95);
}

.toast-warning {
    border-color: rgba(255, 193, 7, 0.5);
    background: rgba(46, 46, 26, 0.95);
}

.toast-info {
    border-color: rgba(33, 150, 243, 0.5);
    background: rgba(26, 26, 46, 0.95);
}

.toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    color: #e8e8e8;
    font-size: 0.95rem;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.toast-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .toast-container {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .toast {
        min-width: auto;
        width: 100%;
    }
}





