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

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

.hero {
    background-image: url('http://static.photos/technology/1200x630/5');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.question-group {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1.5rem;
}

.question-group:last-child {
    border-bottom: none;
}

#results {
    transition: all 0.3s ease-in-out;
}

/* Animation for assessment submission */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Tooltip styles */
.tooltip {
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 5px;
    white-space: nowrap;
}

.tooltip:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #1f2937 transparent transparent transparent;
}

/* Sidebar transition */
custom-sidebar {
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    custom-sidebar {
        transform: translateY(0);
    }
}
