/* Custom Styles for TimeTracker */ body { font-family: 'Inter', sans-serif; } .hidden { display: none; } /* Modal Styles */ .modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.5); display: flex; align-items: center; justify-content: center; z-index: 1000; } .modal-content { background: white; padding: 2rem; border-radius: 0.5rem; width: 90%; max-width: 500px; } /* Tab Styles */ .tab-btn { transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease; border-bottom: 3px solid transparent; } .active-tab { border-color: #2563EB; /* This is Tailwind's blue-600 */ color: #1E40AF; /* This is Tailwind's blue-800 */ font-weight: 500; }