/* style.css — Tiffany Green Glassmorphism Overrides for MeowWonder */
/* Primary: #0ABB92 (Tiffany Green) — applied via CSS variables in base.html */
/* Additional custom styles beyond base.html inline styles */

.glass-panel {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(10, 187, 146, 0.2);
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
    border-radius: 12px;
}

[data-theme="dark"] .glass-panel {
    background: rgba(30,41,59,0.7);
    border: 1px solid rgba(10, 187, 146, 0.15);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

/* Smooth theme transitions */
body, header, .card, .glass-panel, input, button {
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Print styles — hide nav/footer for clean printing */
@media print {
    header, footer, .search-bar, .pagination, .calculator-box { display: none; }
    main { max-width: 100%; padding: 0; }
    body { font-size: 12pt; }
}
