/* Toast Notification Styles */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 300px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    border-left: 4px solid var(--primary-orange);
}

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

.toast-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e0f2f1;
    color: #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-content {
    flex-grow: 1;
}

.toast-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.toast-message {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.toast-close {
    color: #999;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.1rem;
    padding: 0;
    transition: color 0.2s;
}

.toast-close:hover {
    color: #333;
}

/* Success/Error Variants */
.toast.success .toast-icon {
    background: #e0f2f1;
    color: #2e7d32;
}

.toast.success {
    border-left-color: #2e7d32;
}

.toast.error .toast-icon {
    background: #ffebee;
    color: #c62828;
}

.toast.error {
    border-left-color: #c62828;
}

/* Global Smooth Scroll & Selection */
html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--primary-orange);
    color: white;
}

/* Scrollbar Polish */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-blue);
}