/* Toast Notification Styles */

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2500;
    width: 300px;
}

.toast-notification {
    background-color: var(--white);
    border-left: 4px solid var(--turquoise);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin-bottom: 10px;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    overflow: hidden;
}

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

.toast-icon {
    background-color: var(--turquoise);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--gray-dark);
}

.toast-message {
    font-size: 0.9rem;
    color: var(--gray);
}

.toast-close {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 4px;
    margin-left: 8px;
    transition: color 0.2s ease;
}

.toast-close:hover {
    color: var(--gray-dark);
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: var(--turquoise);
    width: 100%;
}

@keyframes toast-progress {
    0% { width: 100%; }
    100% { width: 0%; }
}

.toast-progress.animate {
    animation: toast-progress 3s linear forwards;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .toast-container {
        width: calc(100% - 40px);
    }
}