.custom-alerts-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1050;
    max-width: 400px;
}

.custom-alert {
    border-radius: 0.375rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.custom-alert:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.custom-alert.alert-sm {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    max-width: 300px;
}

.custom-alert.alert-md {
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    max-width: 400px;
}

.custom-alert.alert-lg {
    font-size: 1.125rem;
    padding: 1rem 1.5rem;
    max-width: 500px;
}

.custom-alert .alert-image img {
    object-fit: contain;
}

.custom-alert .btn-close {
    opacity: 0.5;
}

.custom-alert .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}