/* Premium Toast Notification */
.toast-container {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 90%;
    max-width: 400px;
}

.toast-container.show {
    transform: translateX(-50%) translateY(0);
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #323232;
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
}

.toast.error {
    background: #f44336;
}

.toast.success {
    background: #4caf50;
}

.toast.warning {
    background: #ff9800;
}

.toast i {
    font-size: 1.2rem;
}

/* Custom Modal */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.custom-modal {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 340px;
    overflow: hidden;
    animation: modalPop 0.3s ease-out;
}

@keyframes modalPop {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-header {
    padding: 20px 20px 10px;
    text-align: center;
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
}

.modal-body {
    padding: 0 20px 20px;
    text-align: center;
    color: #666;
    line-height: 1.5;
}

.modal-footer {
    display: flex;
    border-top: 1px solid #eee;
}

.modal-btn {
    flex: 1;
    padding: 15px;
    border: none;
    background: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

.modal-btn.confirm {
    color: #4285F4;
    border-right: 1px solid #eee;
}

.modal-btn.cancel {
    color: #999;
}