/* Toast Container - Fixed to top right */
.toast-container-custom {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Individual Toast */
.toast-message {
    min-width: 300px;
    max-width: 450px;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: #fff; /* Fallback */
    color: #fff;
    font-family: 'Public Sans', sans-serif;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    border-left: 6px solid rgba(0,0,0,0.1);
}

/* Show State */
.toast-message.show {
    opacity: 1;
    transform: translateX(0);
}

/* Hide State (for removal) */
.toast-message.hide {
    opacity: 0;
    transform: translateX(50px);
}

/* Types */
.toast-success {
    background: linear-gradient(135deg, #71dd37 0%, #3eac1d 100%);
}

.toast-danger {
    background: linear-gradient(135deg, #ff3e1d 0%, #c52206 100%);
}

.toast-warning {
    background: linear-gradient(135deg, #ffab00 0%, #db8700 100%);
}

.toast-info {
    background: linear-gradient(135deg, #03c3ec 0%, #0289a5 100%);
}

/* Close Button (optional visual cue, though whole toast is clickable) */
.toast-close {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    line-height: 1;
    margin-left: 10px;
    cursor: pointer;
    padding: 0;
}

.toast-close:hover {
    color: #fff;
}
