/* Custom styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a202c;
}

::-webkit-scrollbar-thumb {
    background: #4a5568;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #718096;
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}
@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Chat styles */
.chat-messages {
    scrollbar-width: thin;
    scrollbar-color: #4a5568 #1a202c;
}

.message.ai .message-content {
    border-radius: 0 1rem 1rem 1rem;
}

.message.user .message-content {
    border-radius: 1rem 0 1rem 1rem;
}

/* Calendar overrides */
.fc .fc-toolbar-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.fc .fc-button {
    background-color: #0ea5e9;
    border-color: #0ea5e9;
    color: white;
}

.fc .fc-button:hover {
    background-color: #0284c7;
    border-color: #0284c7;
}

.fc .fc-button-primary:not(:disabled).fc-button-active {
    background-color: #0369a1;
    border-color: #0369a1;
}

.fc .fc-daygrid-day.fc-day-today {
    background-color: rgba(14, 165, 233, 0.1);
}

/* Form styles */
input, textarea, select {
    transition: all 0.2s;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}
