/* Container */
.atsr-container {
    max-width: 700px;
    margin: 30px auto;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

/* Stepper */
.atsr-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.atsr-steps .step {
    text-align: center;
    flex: 1;
    color: #bbb;
    font-size: 14px;
    position: relative;
}

.atsr-steps .step span {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: #e0e0e0;
    border-radius: 50%;
    line-height: 28px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

.atsr-steps .step.active span {
    background: #2ac9a0;
    color: #fff;
}

.atsr-steps .step.active {
    color: #2ac9a0;
}

/* Form */
.atsr-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 15px;
}

.atsr-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-size: 14px;
    resize: vertical;
}

/* Dropbox */
.atsr-dropbox {
    border: 2px dashed #cbd5e0;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    background: #f9fafa;
    margin-bottom: 25px;
    transition: background 0.3s ease;
}

.atsr-dropbox:hover,
.atsr-dropbox.dragover {
    background: #f0fefc;
}

.atsr-drop-label {
    cursor: pointer;
    display: block;
    color: #444;
}

.atsr-icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: #94a3b8;
}

/* Buttons */
.atsr-actions {
    text-align: center;
}

.atsr-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    margin: 5px;
}

.atsr-btn.primary {
    background-color: #2ac9a0;
    color: #fff;
}

.atsr-btn.primary:hover {
    background-color: #24b895;
}

.atsr-btn.secondary {
    background-color: #f1f5f9;
    color: #333;
}

.atsr-btn.secondary:hover {
    background-color: #e2e8f0;
}

.atsr-privacy {
    margin-top: 10px;
    font-size: 13px;
    color: #888;
}

/* Results */
.atsr-results {
    margin-top: 30px;
    background: #f9fafb;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.atsr-results h3,
.atsr-results h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2d3748;
}

.atsr-results ul {
    list-style: none;
    padding-left: 0;
}

.atsr-results li {
    padding: 6px 0;
    font-size: 14.5px;
}

/* Progress Bar */
.ats-progress-wrapper {
    background: #e5e7eb;
    height: 20px;
    border-radius: 30px;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
}

.ats-progress-bar {
    width: 100%;
    height: 100%;
}

.ats-progress-fill {
    height: 100%;
    font-size: 13px;
    text-align: center;
    line-height: 20px;
    color: #fff;
    font-weight: bold;
    transition: width 0.8s ease-in-out;
}

.ats-progress-fill.green {
    background-color: #38a169;
}

.ats-progress-fill.yellow {
    background-color: #ecc94b;
    color: #222;
}

.ats-progress-fill.red {
    background-color: #e53e3e;
}

/* Progress Label */
.ats-progress-label {
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    margin-top: 4px;
}

/* Optional colored text for progress labels */
.ats-progress-label.green-label {
    color: #38a169;
}

.ats-progress-label.yellow-label {
    color: #ecc94b;
}

.ats-progress-label.red-label {
    color: #e53e3e;
}

/* Responsive */
@media (max-width: 600px) {
    .atsr-steps {
        flex-direction: column;
        align-items: flex-start;
    }

    .atsr-steps .step {
        margin-bottom: 15px;
    }
}

/* Tip Message for Missing Job Description */
.atsr-tip {
    background: #fff8e1;
    border-left: 4px solid #f6ad55;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    color: #805000;
    margin: 10px 0;
}
