/* File Upload Area */
.file-drop-area {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #fafcff;
    margin-bottom: 1rem;
}

.file-drop-area:hover {
    border-color: #3498db;
    background: #eff6ff;
}

/* Score Display */
.score-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(120deg, #2563eb, #1e40af);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.progress-ats {
    height: 12px;
    border-radius: 20px;
    background-color: #e2e8f0;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    border-radius: 20px;
    transition: width 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.badge-ats {
    background: #eef2ff;
    color: #1e3a8a;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-top: 8px;
}

/* Metrics Grid */
.ats-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: space-between;
}

.metric-item {
    flex: 1;
    background: #f9fafb;
    border-radius: 12px;
    padding: 0.8rem;
    text-align: center;
    border-left: 4px solid #3498db;
}

.metric-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
}

.metric-name {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #7f8c8d;
    font-weight: 500;
}

/* Suggestions List */
.suggestion-list {
    list-style: none;
    padding-left: 0;
}

.suggestion-list li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #eef2ff;
    display: flex;
    gap: 10px;
    align-items: baseline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .ats-metrics {
        flex-direction: column;
    }
}