body {
    background: #f8fafc;
}

.cvWrapper {
    width: 100%;
    max-width: 700px;
    margin: 32px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.dropZone {
    width: 100%;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 48px 32px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: #fff;
    box-sizing: border-box;
}

.dropZone:hover,
.dropZone.dragover {
    border-color: #94a3b8;
    background: #f1f5f9;
}

.dropZone p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
}

.dropZone label {
    color: #334155;
    text-decoration: underline;
    cursor: pointer;
}

.dropZone input[type="file"] {
    display: none;
}

.urlInputWrapper {
    width: 100%;
}

.urlInputWrapper input {
    width: 100%;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    color: #64748b;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.urlInputWrapper input:focus {
    border-color: #94a3b8;
}

.urlInputWrapper input::placeholder {
    color: #64748b;
}

.previewWrapper {
    border-radius: 10px;
    overflow: hidden;
    max-width: 500px;
}

.previewWrapper img {
    width: 100%;
    max-height: 400px;
    display: block;
    border-radius: 10px;
}

#submitBtn {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    background-color: #0b1c2c;
    padding: 10px 30px;
    border: 2px solid #1a202c;
    border-radius: 10px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

#submitBtn:hover {
    background-color: #6b9fb8;
    color: #1a202c;
    border-color: #0b1c2c;
}

#submitBtn:disabled {
    background: #cbd5e1;
    color: #94a3b8;
    cursor: not-allowed;
}

.cvResult {
    width: 100%;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px;
    box-sizing: border-box;
}

.cvResult p {
    margin: 0;
    color: #334155;
    font-size: 15px;
    line-height: 1.7;
}