/* サブタイトルのスタイル */
.brand-logo .sub-title {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
    margin-top: 4px;
}

/* カードコンテナのスタイル */
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 16px;
    padding: 10px;
}

/* カードのスタイル */
.card {
    width: 280px;
    padding: 16px;
    background: #fff;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    text-align: center;
}

.card:hover {
    transform: scale(1.05);
}

/* 投稿数 & キャンセル数のコンテナ */
.stats-container {
    display: flex;
    justify-content: center;
    align-items: baseline;
    /* ベースラインで揃える */
    gap: 24px;
    /* 数値間の間隔 */
    margin-top: 10px;
}

/* 投稿数 & キャンセル数のコンテナ */
.stats-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* 下端で揃える */
    gap: 24px;
    margin-top: 10px;
}

/* 投稿数のスタイル */
.post-stat, .cancel-stat, .new-guest-stat{
    display: flex;
    flex-direction: column;
    /* 縦並び */
    align-items: center;
    justify-content: center;
}

/* 投稿数の数字 */
.count-number {
    font-size: 32px;
    font-weight: bold;
    color: #0056b3;
    display: flex;
    align-items: baseline;
}

/* キャンセル数の数字 */
.cancel-number {
    font-size: 24px;
    font-weight: bold;
    color: #cc0000;
    display: flex;
    align-items: baseline;
}

/* 新規数の数字 */
.new-guest-number {
    font-size: 24px;
    font-weight: bold;
    color: #28a745;
    display: flex;
    align-items: baseline;
}

/* 「キャンセル」のラベルを上に */
.stat-label.small {
    font-size: 9px;
    color: #cc0000;
    margin-bottom: -2px;
    /* 下の数字と近づける */
}

/* 「キャンセル」のラベルを上に */
.new-stat-label.small {
    font-size: 9px;
    color: #28a745;
    margin-bottom: -2px;
    /* 下の数字と近づける */
}

/* 「件」を数値と同じ高さに */
.stat-label {
    font-size: 16px;
    color: #666;
    margin-left: 3px;
    /* 左に少し寄せる */
}


/* 今年のデータを強調 */
.current-year {
    background: white;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
    border: 3px solid #007bff;
    transform: scale(1.1);
}

/* 過去のデータを少し薄く */
.past-year {
    background: #f8f9fa;
    opacity: 0.8;
}



.user-filter {
    margin-bottom: 15px;
}

.user-filter label {
    margin-right: 10px;
    cursor: pointer;
}

/* レポートテーブル */
.report-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.report-table th, .report-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #ddd;
}

.report-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* キャンセル表示 */
.cancel-text {
    color: red;
    font-weight: bold;
}

/* ✅ ユーザー選択の枠デザイン */
.user-filter-container {
    position: relative;
    border: 2px solid #ddd;  /* ✅ 枠線 */
    border-radius: 8px;      /* ✅ 角を丸く */
    background-color: #f9f9f9;
    padding: 16px;
    padding-top: 32px; /* ✅ 上部に余白を追加（タイトル用） */
}

/* ✅ タイトルのデザイン（枠の上に配置） */
.user-filter-title {
    position: absolute;
    top: -12px;  /* ✅ 枠の上にかぶせる */
    left: 16px;
    background-color: #f9f9f9; /* ✅ 背景色でかぶせる */
    padding: 0 8px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px; /* ✅ アイコンとの間隔 */
}

/* ✅ マテリアルアイコンのサイズ調整 */
.user-filter-title i {
    font-size: 18px;
    color: #555;
}

/* ✅ チェックボックスの配置 */
.user-checkbox-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

/* ✅ チェックボックスとラベルのデザイン */
.user-checkbox-container label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #444;
    cursor: pointer;
}
