body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
}

textarea::-webkit-scrollbar {
    width: 8px;
}

textarea::-webkit-scrollbar-track {
    background: #f1f5f9;
}

textarea::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

textarea::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.tab-active {
    background-color: #ffffff;
    color: #0284c7;
    border-bottom: 2px solid #0284c7;
}

.tab-inactive {
    background-color: transparent;
    color: #475569;
    border-bottom: 2px solid transparent;
}

.prose h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.prose p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.prose ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose strong {
    font-weight: 600;
}

#resume-upload-input, #jd-upload-input {
    display: none;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}