/* プレイリスト一覧コンテナ */
.share_list_container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
    margin: 20px 0 20px 0;
}

/* 新しいプレイリストを作るボタン用 */
.new_share_list_btn {
    width: 70% !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

.webview-tips {
    display: flex;
    justify-content: flex-end;
}

/* Webview警告 */
.alert-webview {
    border: 1px solid #EE0000;
    color: #EE0000;
    font-size: 11px;
    font-weight: bold;
    padding: 10px 10px 5px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.alert-webview p {
    margin-bottom: 5px;
}

/* プラスアイコン（作成ボタン用） */
.btn_module span.share_list_icon_plus {
    right: 1px;
    margin-top: -3px;
    display: inline-block;
    line-height: 1;
    width: 14px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    position: relative;
    vertical-align: middle;
}

.btn_module span.share_list_icon_plus::before {
    content: '';
    color: inherit;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: currentColor;
    border-radius: inherit;
    transform: rotate(90deg);
}

.btn_module.btn_white:hover span.share_list_icon_plus {
    color: #999999;
}

/* プレイリストなしメッセージ */
.no_share_list {
    text-align: center;
    padding: 40px 20px;
    color: #999999;
    font-size: 16px;
}

/* トースト表示用スタイル */
.toast-message {
    display: flex;
    position: fixed;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    opacity: 0;
    width: 300px;
    height: 30px;
    transition: opacity 0.3s ease;
}

.toast-message p {
    padding-top: 2%;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
}

/* リスト上部の説明文エリア */
.share_list_info_area {
    font-size: 12px;
    padding-bottom: 20px;
    color: #777777;
}

.share_list_info_text_area {
    padding: 10px;
}

/* リンク用 */
.mb12 {
    margin-bottom: 12px;
}

/* ご利用ガイド用 */
.share_list_guide_img {
    max-width: 100%;
}

.share_list_guide_img_container {
    margin-right: 25px;
    margin-left: 25px;
    text-align: center !important;
}

.share_list_guide_link {
    text-decoration: underline !important;
    color: #333333 !important;
}

/* 動画埋め込み用コンテナ（レスポンシブ対応） */
.share_list_video_container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9のアスペクト比 */
    height: 0;
    overflow: hidden;
}

.share_list_video_container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* SP対応 */
@media screen and (max-width: 768px) {
    .share_list_container {
        gap: 16px;
    }

    .share_list_guide_img_container {
        margin-right: 10px;
        margin-left: 10px;
    }
}
