body {
    font-family: 'Inter', sans-serif;
    background-color: #111827; /* bg-gray-900 */
}
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #1f2937; /* bg-gray-800 */
}
::-webkit-scrollbar-thumb {
    background: #4b5563; /* bg-gray-600 */
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #6b7280; /* bg-gray-500 */
}
.btn-primary {
     background-color: #3b82f6;
     color: white;
     font-weight: 600;
     padding: 0.5rem 1rem;
     border-radius: 0.5rem;
     transition: background-color: 0.2s;
}
.btn-primary:hover {
    background-color: #2563eb;
}
.btn-secondary {
    background-color: #4b5563;
    color: white;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    transition: background-color: 0.2s;
}
.btn-secondary:hover {
     background-color: #6b7280;
}
select, input[type="text"] {
    background-color: #374151; /* bg-gray-700 */
    border: 1px solid #4b5563; /* border-gray-600 */
    border-radius: 0.375rem; /* rounded-md */
}
select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%239ca3af' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
#notification-modal {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.boon-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}
