* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #eef2ff, #f8fafc);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.container {
    width: 100%;
    max-width: 850px;
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}

textarea,
select {
    width: 100%;
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 16px;
    margin-bottom: 20px;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

button {
    border: none;
    padding: 13px 20px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    margin: 5px;
}

#checkBtn {
    width: 100%;
    background: #4f46e5;
    color: white;
}

#resetBtn {
    background: #e5e7eb;
}

#downloadBtn {
    background: #16a34a;
    color: white;
}

button:hover {
    opacity: 0.9;
}

.result-box {
    margin-top: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
}

#score {
    font-size: 22px;
    font-weight: bold;
    margin: 15px 0;
}

.progress-container {
    width: 100%;
    height: 18px;
    background: #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
}
#progress-bar {
    height: 100%;
    width: 0%;
    background: #4f46e5;
    transition: width 0.5s ease;
}

#recommendation {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
}

#roadmap {
    margin-top: 15px;
    line-height: 1.8;
}

@media (max-width: 600px) {
    body {
        padding: 15px;
    }

    .container {
        padding: 22px;
    }

    h1 {
        font-size: 28px;
    }

    button {
        width: 100%;
        margin: 5px 0;
    }
   
}
#score {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
    padding: 18px;
    border-radius: 12px;
    background: #e0e7ff;
    border: 2px solid #4f46e5;
}
#recommendation {
    margin: 20px 0;
    padding: 22px;
    border-radius: 15px;
    border: 2px solid #4f46e5;
    background: #eef2ff;
    text-align: center;
}

#recommendation h2 {
    margin-top: 0;
    font-size: 24px;
}

#recommendation p {
    margin: 10px 0;
    font-size: 17px;
}
#next-steps {
    margin: 20px 0;
    padding: 20px;
    border-radius: 15px;
    background: #f8fafc;
    border: 2px solid #94a3b8;
}

#next-steps h3 {
    text-align: center;
    margin-top: 0;
    font-size: 22px;
}

#next-steps p {
    margin: 10px 0;
    font-size: 16px;
}
.skill-hint {
    margin-top: 8px;
    font-size: 14px;
    text-align: left;
    opacity: 0.8;
}
#project-suggestion {
    margin: 20px 0;
    padding: 20px;
    border-radius: 15px;
    background: #f8fafc;
    border: 2px solid #94a3b8;
}

#project-suggestion h3 {
    text-align: center;
    margin-top: 0;
    font-size: 22px;
}

#project-suggestion p {
    text-align: center;
    line-height: 1.6;
    font-size: 16px;
}
#career-skills {
    margin: 20px 0;
    padding: 20px;
    border-radius: 15px;
    background: #f8fafc;
    border: 2px solid #94a3b8;
}

#career-skills h3 {
    text-align: center;
    margin-top: 0;
    font-size: 22px;
}

#career-skills p {
    text-align: center;
    line-height: 1.6;
    font-size: 16px;
}
#interview-prep {
    margin: 20px 0;
    padding: 20px;
    border-radius: 15px;
    background: #f8fafc;
    border: 2px solid #94a3b8;
}

#interview-prep h3 {
    text-align: center;
    margin-top: 0;
    font-size: 22px;
}

#interview-prep p {
    text-align: center;
    line-height: 1.6;
    font-size: 16px;
}
@media (max-width: 600px) {

    .container {
        width: 90%;
        padding: 20px;
    }

    h1 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 15px;
    }

    textarea,
    select,
    button {
        width: 100%;
        box-sizing: border-box;
    }

    #recommendation,
    #career-reason,
    #next-steps,
    #project-suggestion,
    #career-skills,
    #interview-prep {
        padding: 15px;
    }

    #recommendation h2,
    #career-reason h3,
    #next-steps h3,
    #project-suggestion h3,
    #career-skills h3,
    #interview-prep h3 {
        font-size: 19px;
    }
}
#skill-dashboard {
    margin: 20px 0;
    padding: 20px;
    border-radius: 15px;
    background: #f8fafc;
    border: 2px solid #94a3b8;
}

#skill-dashboard h3 {
    text-align: center;
    margin-top: 0;
    font-size: 22px;
}

.skill-item {
    margin: 15px 0;
}

.skill-name {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-weight: bold;
}

.skill-bar {
    width: 100%;
    height: 12px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    border-radius: 10px;
}