/* MGM Alert - Eski HTML yapısıyla uyumlu versiyon */

.hb-mgm-alert {
    background: linear-gradient(135deg, #fef3e2 0%, #fef9f3 100%) !important;
    border: none !important;
    border-left: 4px solid #f59e0b !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15) !important;
    padding: 14px 16px !important;
    margin: 16px 0 !important;
    position: relative !important;
    font-size: 14px !important;
}

/* Header - başlık ve kapatma butonu */
.hb-mgm-alert__header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-bottom: 0 !important;
}

.hb-mgm-alert__header strong {
    font-weight: 600 !important;
    font-size: 14px !important;
    color: #92400e !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    line-height: 1.4 !important;
    flex: 1 !important;
}

.hb-mgm-alert__header strong::before {
    content: "" !important;
    display: inline-block !important;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f59e0b'%3E%3Cpath d='M12 2L1 21h22L12 2zm0 3.99L19.53 19H4.47L12 5.99zM11 10v4h2v-4h-2zm0 6v2h2v-2h-2z'/%3E%3C/svg%3E") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
}

/* Kapatma butonu */
.hb-mgm-alert__close {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    border-radius: 6px !important;
    border: none !important;
    background: rgba(245, 158, 11, 0.2) !important;
    color: #92400e !important;
    font-size: 22px !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.hb-mgm-alert__close:hover {
    background: rgba(245, 158, 11, 0.35) !important;
}

.hb-mgm-alert__close:active {
    transform: scale(0.95) !important;
}

/* Body içeriği */
.hb-mgm-alert__body {
    margin-top: 8px !important;
}

.hb-mgm-alert__body p {
    margin: 0 0 6px !important;
    line-height: 1.4 !important;
    font-size: 13px !important;
    color: #78350f !important;
}

.hb-mgm-alert__body p:last-child {
    margin-bottom: 0 !important;
}

/* Tarih ve kaynak */
.hb-mgm-alert__time,
.hb-mgm-alert__source {
    font-size: 12px !important;
    color: #a16207 !important;
    margin: 0 !important;
}

.hb-mgm-alert__source a {
    color: #a16207 !important;
    text-decoration: none !important;
}

.hb-mgm-alert__source a:hover {
    text-decoration: underline !important;
}

/* Mobil */
@media (max-width: 640px) {
    .hb-mgm-alert {
        padding: 12px 14px !important;
    }
    
    .hb-mgm-alert__header strong {
        font-size: 13px !important;
    }
    
    .hb-mgm-alert__close {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        font-size: 24px !important;
    }
    
    .hb-mgm-alert__body p {
        font-size: 12.5px !important;
    }
}