/* Custom Gritter Styles */
.gritter-success {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    color: white !important;
}

.gritter-error {
    background: linear-gradient(135deg, #dc3545, #e74c3c) !important;
    color: white !important;
}

.gritter-warning {
    background: linear-gradient(135deg, #ffc107, #fd7e14) !important;
    color: white !important;
}

.gritter-info {
    background: linear-gradient(135deg, #17a2b8, #6f42c1) !important;
    color: white !important;
}

.gritter-item-wrapper {
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    border: none !important;
}

.gritter-title {
    font-weight: 600 !important;
    font-size: 14px !important;
    color: white !important;
}

.gritter-text {
    font-size: 13px !important;
    line-height: 1.4 !important;
    color: white !important;
}

.gritter-close {
    color: white !important;
    opacity: 0.8 !important;
}

.gritter-close:hover {
    opacity: 1 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gritter-item-wrapper {
        margin: 10px !important;
        max-width: calc(100% - 20px) !important;
    }
    
    .gritter-title {
        font-size: 13px !important;
    }
    
    .gritter-text {
        font-size: 12px !important;
    }
} 