body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;

    margin: 0;
    padding: 40px 0;

    display: flex;
    justify-content: center;
    align-items: flex-start;   
    min-height: 100vh;      
}

.container {
    background: #1e293b;
    padding: 30px;
    border-radius: 12px;
    width: 700px;          
    max-width: 95%;       
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

label {
    font-size: 14px;
}

select, input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 6px;
    border: none;
    outline: none;
}

button {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    border: none;
    border-radius: 6px;
    background-color: #3b82f6;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background-color: #2563eb;
}

#result {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
}
.result-card {
    margin-top: 20px;
    padding: 15px;
    background: #0f172a;
    border-radius: 10px;
}

.score {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 8px;
}

.level {
    font-weight: bold;
    margin-bottom: 12px;
}

.badge {
    display: inline-block;
    background-color: #334155;
    padding: 5px 10px;
    border-radius: 20px;
    margin: 4px 4px 0 0;
    font-size: 12px;
}

.roadmap {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.5;
    color: #cbd5e1;
}
.progress-container {
    background-color: #1e293b;
    border-radius: 20px;
    overflow: hidden;
    height: 18px;
    margin-bottom: 12px;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    transition: width 0.6s ease-in-out;
}
#skillsContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

#skillsContainer label {
    background: #f4f6f9;
    padding: 10px 14px;
    border-radius: 8px;

    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 14px;
    color: #1f2937;
    cursor: pointer;
    transition: 0.2s ease;

    line-height: 1.4;
}


#skillsContainer label:hover {
    background: #e3e8f0;
}

#skillsContainer input[type="checkbox"] {
    accent-color: #4f46e5;
    cursor: pointer;
}
#skillsContainer label {
    color: #1f2937;   
}