/* Modern notification/growl styling */
.growl {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    min-width: 300px !important;
    max-width: 400px !important;
    z-index: 99999 !important;
    border: none !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    background: white !important;
    overflow: hidden !important;
    animation: slideInRight 0.4s ease-out !important;
}

.growl-title {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    color: white !important;
    padding: 1rem 1.5rem 0.5rem !important;
    margin: 0 !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-radius: 0 !important;
}

.growl-message {
    padding: 0.5rem 1.5rem 1.5rem !important;
    color: #495057 !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

.growl-close {
    position: absolute !important;
    top: 0.75rem !important;
    right: 1rem !important;
    background: #666 !important;
    border: none !important;
    color: white !important;
    font-size: 0.75rem !important;
    cursor: pointer !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0.9 !important;
    transition: all 0.2s ease !important;
}

.growl-close:hover {
    opacity: 1 !important;
    background: #555 !important;
    transform: scale(1.1) !important;
}

.growl-close::before {
    content: "×" !important;
    font-weight: bold !important;
    line-height: 1 !important;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .growl {
        top: 10px !important;
        right: 10px !important;
        left: 10px !important;
        min-width: auto !important;
        max-width: none !important;
    }
}
