/* 
   VISUAL PATCHES v5.0 (Gemini Pre-Fabricated)
   Goal: Save Claude tokens by pre-defining visual styles.
   Usage: Import this file in style.css or link in index.html
*/

/* --- GHOST BUTTONS --- */
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #aaa;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-primary, #3b82f6);
  color: #fff;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.1);
}

/* --- GLASSMORPHISM PANELS --- */
.glass-panel-premium {
  background: rgba(13, 17, 23, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.08);
}

/* --- COMPLIANCE BANNERS --- */
.compliance-banner-transition {
  transition:
    background-color 0.5s ease,
    border-color 0.5s ease,
    transform 0.3s ease;
}

.compliance-success {
  background: rgba(16, 185, 129, 0.1) !important;
  border-color: rgba(16, 185, 129, 0.4) !important;
}

.compliance-fail {
  background: rgba(239, 68, 68, 0.1) !important;
  border-color: rgba(239, 68, 68, 0.4) !important;
}

/* =============================================================================
   16. SMART BUILDER AUTOMATION (Antigravity Advisor)
   Purpose: UI Elements for Auto-Fixed compliance items
   ============================================================================= */

/* Smart Fix Badge (The "Green Shield") */
.badge-smart-fix {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    margin-top: 4px; /* Layout adjustment */
    background: rgba(16, 185, 129, 0.15); /* Green-500 alpha */
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 99px; /* Capsular */
    color: #4ade80; /* Green-400 */
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
    animation: pulse-soft 2s infinite;
}

.badge-smart-fix i {
    font-size: 12px;
}

/* Fix Notification Toast Context */
.notification-fix {
    border-left: 4px solid #4ade80 !important;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.1), transparent) !important;
}

/* Animation */
@keyframes pulse-soft {
    0% { box-shadow: 0 0 10px rgba(16, 185, 129, 0.2); }
    50% { box-shadow: 0 0 16px rgba(16, 185, 129, 0.4); }
    100% { box-shadow: 0 0 10px rgba(16, 185, 129, 0.2); }
}
