body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #1f2937, #111827);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #111;
}

.container {
    background: white;
    width: 600px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

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

.input-group {
    margin-bottom: 10px;
}

label {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    margin: 5px 0 10px;
    padding: 10px;
    border-radius: 6px;
    border:1px solid #ccc;
}

textarea {
    height: 120px;
}

button {
    width:100%;
    padding: 12px;
    border-radius: 6px;    
    border: none;
    background: #2563eb;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    background: #1d4ed8;
}

#loading {
    text-align: center;
    font-style: italic;
    margin-top: 10px;
}

#result {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    background: #f9fafb;
}

.score {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.green { color : #16a34a; }
.yellow { color: #d97706; }
.red { color: #dc2626; }

/* 🔥 NEW: skill highlighting */
.skills span {
    display: inline-block;
    margin: 4px;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
}

.match {
    background: #dcfce7;
    color: #166534;
}

.miss {
    background: #fee2e2;
    color: #991b1b;
}