.dccf-finder-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 12px;
    max-width: 750px;
    margin: 30px auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    font-family: system-ui, -apple-system, sans-serif;
}
.dccf-finder-container h2 { margin-bottom: 5px; color: #1a202c; }
.subtitle { color: #718096; margin-bottom: 25px; font-size: 14px; }
.grid-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}
@media (max-width: 700px) {
    .grid-inputs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .grid-inputs { grid-template-columns: 1fr; }
}
.form-group { display: flex; flex-direction: column; }
.form-group label { font-weight: 600; color: #4a5568; margin-bottom: 6px; font-size: 13px; min-height: 32px; display: flex; align-items: flex-end; }
.form-group select { padding: 8px; border: 1px solid #cbd5e0; border-radius: 6px; background-color: #fff; font-size: 14px; }
.btn-find {
    background: #2b6cb0;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: background 0.2s ease;
}
.btn-find:hover { background: #2c5282; }
#dccf-results {
    margin-top: 30px;
    background: #f7fafc;
    border-top: 4px solid #2b6cb0;
    padding: 25px;
    border-radius: 6px;
}
.score-summary {
    background: #ebf8ff;
    border: 1px solid #bee3f8;
    color: #2b6cb0;
    padding: 12px;
    border-radius: 6px;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
}
.results-hidden { display: none; }
.course-list { list-style: none; padding: 0; margin: 15px 0 0 0; }
.course-list li { padding: 12px 0; border-bottom: 1px solid #e2e8f0; color: #2d3748; display: flex; align-items: center; }
.badge { color: #38a169; margin-right: 10px; font-weight: bold; }
.no-results { color: #e53e3e; font-weight: 600; text-align: center; }
.loading { color: #4a5568; font-style: italic; text-align: center; }