/* Toast notification styles */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1f2937;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    max-width: 400px;
}

    .toast.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

/* Accordion styles */
.accordion button svg {
    transition: transform 0.3s ease;
}

.accordion button[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom utility classes */
.container {
    max-width: 1280px;
}

/* Button hover effects */
button {
    transition: all 0.2s ease;
}

/* Link hover effects */
a {
    transition: all 0.2s ease;
}