/**
 * YouTube Cookie Consent Control Styles
 * YouTube動画リンクボタンのスタイル定義
 */

/* リンクボタンのコンテナ */
.ytcc-link-container {
    text-align: center;
    padding: 20px 0;
    min-height: 0;
    height: auto;
}

/* リンクボタン本体 */
.ytcc-video-link {
    display: inline-block;
    background-color: #0070f3;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none !important;
    font-weight: 500;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

/* ホバー時のスタイル */
.ytcc-video-link:hover {
    background-color: #0051cc;
    color: #fff !important;
    text-decoration: none !important;
}

/* フォーカス時のスタイル（アクセシビリティ対応） */
.ytcc-video-link:focus {
    outline: 2px solid #0070f3;
    outline-offset: 2px;
}

/* アクティブ時のスタイル */
.ytcc-video-link:active {
    background-color: #003d99;
}