.blh-notification {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) translateX(100%);
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 15px;
    max-width: 320px;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.5;
}

.blh-notification.show {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.blh-notification-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.blh-flag {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    display: block; /* Ensure flag is displayed as block */
    object-fit: contain; /* Maintain aspect ratio */
}

.blh-notification-title {
    font-weight: 600;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.blh-notification-text {
    margin: 0 0 12px 0;
    font-size: 14px;
}

.blh-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.blh-button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background: #333;
    color: white;
    font-size: 14px;
    transition: background 0.2s;
}

.blh-button:hover {
    background: #444;
}

.blh-dismiss {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    text-align: right;
    color: #777;
    text-decoration: none;
}

.blh-dismiss:hover {
    text-decoration: underline;
    color: #555;
}
.blh-flag-container {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    overflow: hidden;
    flex-shrink: 0;
}

.blh-flag-container svg {
    width: 100%;
    height: 100%;
    display: block;
}