/* YouTube Consent Control Button Styles */
.youtube-consent-button {
    display: inline-block;
    background-color: #0070f3;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border: none;
    outline: none;
}

.youtube-consent-button:hover {
    background-color: #0051cc;
    color: #ffffff;
    text-decoration: none;
}

.youtube-consent-button:focus {
    background-color: #0051cc;
    outline: 2px solid #0070f3;
    outline-offset: 2px;
}