@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
.tabs {
    margin-bottom: 15px;
}

.tabs button {
    margin-top: 5px;
    padding: 10px 20px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
}

.tabs button.active {
    background-color: #0073aa;
    color: #fff;
    font-weight: bold;
    border-color: #005885;
}

.tab-content {
    margin-top: 20px;
    display: none; /* 初期状態では非表示 */
}

.tab-content article {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    border: 1px solid #ccc;
}

.approve, .deny {
    color: white;
    cursor: pointer;
    font-size: larger;
    padding: 0.8rem 1.4rem;
    font-weight: bold;
    border: double;
}
.approve {
    background-color: dodgerblue;
}
.deny {
    background-color: orangered;
    margin-left: 1rem;
}
/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}
