
/* OAuth Consent Screen */
.consent-info {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.consent-scopes {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

.consent-scopes li {
    padding: 0.25rem 0;
}

.consent-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.consent-buttons button {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #545b62;
}
