/* Food Butik Elementor Widgets Styles */

/* Location Notification Widget */
.fb-location-notification {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    line-height: 1.6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 16px 20px;
    border-radius: 12px;
    border: none;
    border-left: 4px solid;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    font-weight: 500;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}


.fb-location-notification:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Notification Type Specific Styles */
.fb-notification-info {
    background: #e8f4fd;
    color: #1a5a96;
    border-left-color: #2196F3;
}

.fb-notification-warning {
    background: #fff8e6;
    color: #8a6d3b;
    border-left-color: #FF9800;
}

.fb-notification-error {
    background: #fdeaea;
    color: #a94442;
    border-left-color: #f44336;
}

.fb-notification-success {
    background: #e8f5e9;
    color: #2e7d32;
    border-left-color: #4CAF50;
}

/* Icon Styles */
.fb-notification-icon {
    margin-right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.fb-notification-icon i {
    line-height: 1;
}

.fb-notification-icon svg {
    display: block;
}

/* Type-specific icon backgrounds */
.fb-notification-info .fb-notification-icon {
    background: rgba(33, 150, 243, 0.15);
    color: #1976D2;
}

.fb-notification-warning .fb-notification-icon {
    background: rgba(255, 152, 0, 0.15);
    color: #F57C00;
}

.fb-notification-error .fb-notification-icon {
    background: rgba(244, 67, 54, 0.15);
    color: #D32F2F;
}

.fb-notification-success .fb-notification-icon {
    background: rgba(76, 175, 80, 0.15);
    color: #388E3C;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fb-location-notification {
        padding: 14px 16px;
        border-radius: 10px;
        font-size: 13px;
    }
    
    .fb-notification-icon {
        padding: 6px;
        margin-right: 12px;
    }
}

/* Animation for appearance */
.fb-location-notification {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
