@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
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/*過去ログ取得*/
/*---*/
.commets-list {
padding-left: 25px;
list-style: decimal;
}
/* ランキング用　*/
.bm-ranking-title {
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #333;
}

.bm-chat-ranking-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
}

.bm-chat-ranking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 10px 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.bm-chat-ranking-item:hover {
    transform: translateY(-3px);
}

.bm-rank-left {
    display: flex;
    align-items: center;
}

.bm-rank-icon {
    font-size: 1.8em;
    margin-right: 10px;
}

.bm-avatar img {
    border-radius: 50%;
    margin-right: 10px;
    width: 50px;
    height: 50px;
}

.bm-username {
    font-weight: bold;
    color: #333;
}

.bm-rank-right {
    text-align: right;
    flex-grow: 1;
}

.bm-count {
    font-size: 1em;
    font-weight: bold;
    color: #555;
}

.bm-bar-container {
    background: #ddd;
    border-radius: 5px;
    height: 10px;
    width: 150px;
    margin-top: 5px;
    overflow: hidden;
}

.bm-bar {
    background: linear-gradient(90deg, #4caf50, #81c784);
    height: 100%;
    border-radius: 5px;
    transition: width 0.5s ease;
}
/*ｂｍ表示名アニメーション*/



/* チャットランキングカスタマイズ　*/
/* 機能しなかったので削除*/
/* テトコイン表示用 */
/* テトコインランキングのスタイル */
.tetocoin-ranking {
    list-style-type: none;
    padding: 0;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.tetocoin-ranking-item {
    padding: 10px;
    margin: 5px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tetocoin-ranking-item:last-child {
    border-bottom: none;
}

.rank-left {
    display: flex;
    align-items: center;
}

.rank-icon {
    font-size: 1.5em;
    margin-right: 10px;
}

.avatar {
    margin-right: 10px;
}

.username {
    font-size: 1.2em;
    font-weight: bold;
}

.rank-right {
    text-align: right;
}

.tetocoin-count {
    font-size: 1.2em;
    color: #ff6600;
}

.bar-container {
    width: 100%;
    height: 10px;
    background-color: #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 5px;
}

.bar {
    height: 100%;
    background-color: #ff6600;
}
/*chatapp*/
.chat-container {
    background-color: #111;
    color: #00ffea;
    font-family: 'Courier New', monospace;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    max-height: 500px;
    overflow-y: auto;
}

.chat-message {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.chat-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.chat-content {
    flex-grow: 1;
}

.chat-display-name {
    color: #00ffea;
    font-weight: bold;
}

.chat-role {
    font-size: 0.8em;
    color: #ff00aa;
    margin-left: 5px;
}

.chat-time {
    color: #666;
    font-size: 0.75em;
    margin-left: 10px;
}

.chat-text {
    margin-top: 4px;
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

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

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