* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    background: #0f172a;

    color: white;

    font-family: Arial, sans-serif;

    padding: 40px;
}

.container {

    max-width: 1000px;

    margin: auto;
}

h1 {

    text-align: center;

    margin-bottom: 10px;

    font-size: 42px;
}

.subtitle {

    text-align: center;

    margin-bottom: 40px;

    color: #94a3b8;
}

.card {

    background: #1e293b;

    padding: 24px;

    border-radius: 12px;

    margin-bottom: 30px;
}

textarea {

    width: 100%;

    min-height: 180px;

    padding: 16px;

    border: none;

    border-radius: 8px;

    margin-top: 15px;

    resize: vertical;

    font-size: 15px;
}

button {

    margin-top: 20px;

    background: #3b82f6;

    color: white;

    border: none;

    padding: 14px 22px;

    border-radius: 8px;

    cursor: pointer;

    font-size: 15px;

    transition: 0.2s;
}

button:hover {

    background: #2563eb;
}

.hidden {

    display: none;
}

.job-card {

    background: #334155;

    padding: 18px;

    border-radius: 10px;

    margin-top: 18px;
}

.job-card h3 {

    margin-bottom: 8px;
}

.job-card p {

    margin-top: 8px;

    color: #cbd5e1;
}

.skill {

    display: inline-block;

    background: #2563eb;

    padding: 6px 10px;

    border-radius: 20px;

    margin-right: 8px;

    margin-top: 8px;

    font-size: 13px;
}

#clarifying-question {

    margin-top: 15px;

    color: #e2e8f0;

    line-height: 1.6;
}