@import url('style.css');

.upload-zone {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 48px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.upload-zone:hover {
    border-color: var(--primary);
    background: #f8fafc;
}

.upload-zone.dragover {
    border-color: var(--primary);
    background: #eff6ff;
}

.upload-icon {
    font-size: 48px;
    color: #94a3b8;
    margin-bottom: 12px;
}

.upload-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.review-score {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
    padding: 12px 0;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(var(--primary) 0% 82%, #e2e8f0 82% 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.score-circle::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
}

.score-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    z-index: 1;
}

.score-label {
    font-size: 11px;
    color: #94a3b8;
    z-index: 1;
}

.score-status .badge {
    font-size: 14px;
    padding: 6px 16px;
}

.clause-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.clause-item {
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 4px solid #e2e8f0;
}

.clause-item.warning {
    border-left-color: var(--warning);
    background: #fffbeb;
}

.clause-item.success {
    border-left-color: var(--success);
    background: #f0fdf4;
}

.clause-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.clause-name {
    font-weight: 600;
    font-size: 14px;
}

.clause-badge {
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 50px;
    color: #fff;
}

.clause-desc {
    font-size: 13px;
    color: #64748b;
    margin: 4px 0 0;
}

.recommendation-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.recommendation-list li {
    padding: 6px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.recommendation-list li i {
    font-size: 18px;
}