@charset "UTF-8";

/*
Theme Name: Origin
Author: WeFull Co., Ltd.
Author URI: https://www.wefull.co.jp/
Version: 1.2
*/

/* モーダルの外枠（背景） */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* モーダルのコンテンツ */
.modal-content {
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    color: #333;
}

/* フォーム内のレイアウト */
#edit-song-form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

#edit-song-form input[type="text"],
#edit-song-form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* クレジットのチェックボックス群 */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 4px;
    margin-top: 5px;
}

/* アクションボタン */
.modal-actions {
    margin-top: 25px;
    display: flex;
    gap: 10px;
}

.edit-btn, #save-song {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
}

#close-modal {
    background: #eee;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
}