/* Custom styles for ChronoLog Landing Page */
body {
    font-family: 'Inter', sans-serif;
}

.gradient-bg {
    background-image: radial-gradient(circle at top right, rgba(139, 92, 246, 0.2), transparent 40%),
                      radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.2), transparent 50%);
}

.dark .gradient-bg {
     background-image: radial-gradient(circle at top right, rgba(139, 92, 246, 0.1), transparent 40%),
                      radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.1), transparent 50%);
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark .glass-card {
    background: rgba(17, 24, 39, 0.5);
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dark ::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

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

/* Dashboard-specific styles */
.multiselect-container {
    position: relative;
}

.multiselect-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
}

.multiselect-container.open .multiselect-dropdown {
    display: block;
}

/* Animation for modal */
.modal-enter {
    opacity: 0;
    transform: translateY(-4px);
}

.modal-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 300ms, transform 300ms;
}

.modal-exit {
    opacity: 1;
    transform: translateY(0);
}

.modal-exit-active {
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 300ms, transform 300ms;
}

/* Prose styling for AI content */
.prose {
    max-width: none;
}

.prose h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: inherit;
}

.prose p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.prose ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.prose strong {
    font-weight: 600;
    color: inherit;
}

.dark .prose {
    color: #d1d5db;
}

.dark .prose h3 {
    color: #f9fafb;
}

.dark .prose strong {
    color: #f3f4f6;
}