/**
 * TimeFly Admin Notices CSS
 * FILE: admin/css/admin-notifications.css
 * 
 * Minimal CSS for TimeFly admin notifications that appear across WordPress admin.
 * Loads globally for notice styling without the overhead of full admin interface CSS.
 * 
 * @package TimeFly
 * @subpackage Admin/Assets
 * @since 0.1.0
 */

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

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

.timefly-notice-content {
  display: flex;
  align-items: center;
  margin: 10px 0;
  gap: 12px;
}

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

.timefly-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;
}

.timefly-notice-button {
  text-decoration: none;
  vertical-align: baseline;
}

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

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

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