@import url('base/_variables.css');
@import url('base/_reset.css');
@import url('base/_typography.css');

@import url('components/_navbar.css');
@import url('components/_footer.css');

@import url('utilities/_floating_buttons.css');

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

.toast {
    background: #333;
    color: white;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 4px;
    min-width: 250px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    animation: slideIn 0.3s ease-out;
}

.toast.success { background: #28a745; }
.toast.error { background: #dc3545; }
.toast.warning { background: #ffc107; color: #000; }
.toast.info { background: #17a2b8; }

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

