.gbp-auditor-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gbp-auditor-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.gbp-auditor-header h2 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 28px;
}

.gbp-auditor-subtitle {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.gbp-auditor-form {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.gbp-form-group {
    margin-bottom: 25px;
}

.gbp-form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.gbp-form-group label::after {
    content: '';
}

.gbp-form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.gbp-form-input:focus {
    outline: none;
    border-color: #4285f4;
}

.gbp-form-help {
    margin: 8px 0 0 0;
    font-size: 13px;
    color: #666;
    font-style: italic;
}

.gbp-input-method-tabs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.gbp-input-method-tabs input[type="radio"] {
    display: none;
}

.gbp-tab-label {
    display: inline-block;
    padding: 10px 20px;
    background: #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.gbp-tab-label:hover {
    background: #d0d0d0;
}

.gbp-input-method-tabs input[type="radio"]:checked + .gbp-tab-label {
    background: #4285f4;
    color: white;
    border-color: #357ae8;
}

.gbp-form-actions {
    margin-top: 30px;
    text-align: center;
}

.gbp-auditor-run-btn {
    background: #4285f4;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.gbp-auditor-run-btn:hover {
    background: #357ae8;
}

.gbp-auditor-run-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.gbp-auditor-loading {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 18px;
}

.gbp-auditor-results-content {
    display: grid;
    gap: 20px;
}

.gbp-audit-check {
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s;
}

.gbp-audit-check:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gbp-audit-check.pass {
    border-color: #4caf50;
    background: #f1f8f4;
}

.gbp-audit-check.fail {
    border-color: #f44336;
    background: #fff5f5;
}

.gbp-audit-check.error {
    border-color: #ff9800;
    background: #fff8e1;
}

.gbp-audit-check-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.gbp-audit-check-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.gbp-audit-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.gbp-audit-status.pass {
    background: #4caf50;
    color: white;
}

.gbp-audit-status.fail {
    background: #f44336;
    color: white;
}

.gbp-audit-status.error {
    background: #ff9800;
    color: white;
}

.gbp-audit-message {
    color: #666;
    margin: 10px 0;
    line-height: 1.6;
}

.gbp-audit-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #555;
}

.gbp-audit-details strong {
    color: #333;
}

.gbp-auditor-error {
    background: #fff3cd;
    border: 2px solid #ffc107;
    color: #856404;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
}

.gbp-summary {
    background: #e3f2fd;
    border: 2px solid #2196f3;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.gbp-summary h3 {
    margin: 0 0 15px 0;
    color: #1976d2;
}

.gbp-summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.gbp-summary-stat {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 4px;
}

.gbp-summary-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #1976d2;
}

.gbp-summary-stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

