.audit-score-card {
    text-align: center;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.score-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 24px;
    font-weight: bold;
}

.audit-section {
    margin-bottom: 30px;
}

.audit-section h5 {
    color: #495057;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e9ecef;
}

.issue-item {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 10px;
}

.issue-item.issue-critical {
    background: #f8d7da;
    border-color: #f5c6cb;
}

.issue-item.issue-warning {
    background: #fff3cd;
    border-color: #ffeaa7;
}

.issue-title {
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.issue-description {
    font-size: 14px;
    margin-bottom: 8px;
    color: #6c757d;
}

.issue-suggestion {
    font-size: 13px;
    font-style: italic;
    color: #495057;
    background: rgba(255,255,255,0.5);
    padding: 8px;
    border-radius: 4px;
    margin-top: 8px;
}

.issue-impact {
    font-size: 12px;
    font-weight: 500;
    color: #dc3545;
    margin-bottom: 8px;
}

.recommendation-item {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 10px;
}

.recommendation-title {
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.recommendation-description {
    font-size: 14px;
    margin-bottom: 8px;
}

.check-item {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 8px;
}

.check-title {
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #28a745;
}

.check-description {
    font-size: 13px;
    color: #6c757d;
}

.audit-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.progress {
    height: 25px;
    border-radius: 12px;
}

.progress-bar {
    border-radius: 12px;
}

.audit-status p {
    margin: 5px 0;
    font-size: 14px;
    color: #6c757d;
}

.result-actions {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}
