/**
 * MieBadge Admin Notifications CSS
 * FILE: assets/miebadge-admin-notices.css
 *
 * Lightweight CSS for admin notifications that appear throughout WordPress admin.
 * Optimized for performance with only essential styles for proper display.
 *
 * @package MieBadge
 * @since 1.0.0
 */

/* =============================================================================
   Admin Notice System - Global Minimal Styles
   ============================================================================= */

.miebadge-review-notice {
    border-left-color: #2271b1 !important;
}

/* Notification Layout */
.miebadge-notice-content {
    display: flex;
    align-items: center;
    margin: 10px 0;
    gap: 12px;
}

.miebadge-notice-logo {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Notification Badge - Perfect Circle with Spacing */
.miebadge-notification-badge {
    background: #d63638;
    color: white;
    border-radius: 50%;
    padding: 0;
    font-size: 11px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    display: inline-block;
    margin-right: 8px;
}

.miebadge-notice-button {
    text-decoration: none;
    vertical-align: baseline;
    margin-left: auto;
}

.miebadge-notice-button:hover {
    background: #2271b1;
    border-color: #2271b1;
    color: white;
}

/* Mobile responsiveness for admin notices */
@media (max-width: 768px) {
    .miebadge-notice-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .miebadge-notice-logo {
        margin: 0;
    }

    .miebadge-notice-button {
        margin-left: 0;
    }
}
