/* 誕生花・誕生石カレンダー専用スタイル */

.pt-note-inline {
    font-size: 0.85rem;
    color: #777;
}

.pt-birth-flower-list {
    margin-top: 2.5rem;
}

.pt-birth-flower-month-nav {
    margin-top: 1rem;
}

.pt-birth-flower-month-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 1rem 0;
}

.pt-birth-flower-month-tab {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.8rem;
    border: 1px solid #e0e4e8;
    border-radius: 999px;
    background: #fff;
    color: #444;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.pt-birth-flower-month-tab:hover {
    border-color: var(--pt-blue-light);
    color: var(--pt-blue-light);
}

.pt-birth-flower-month-tab.is-active {
    background: linear-gradient(90deg, var(--pt-blue-light), var(--pt-teal));
    border-color: transparent;
    color: #fff;
}

.pt-birth-flower-stone {
    margin: 1rem 0;
    padding: 0.75rem 1rem;
    border-radius: 0.6rem;
    background: var(--pt-green-bg);
    border: 1px solid var(--pt-green-border);
    font-size: 0.9rem;
}

.pt-birth-flower-table th,
.pt-birth-flower-table td {
    text-align: left;
    white-space: nowrap;
}

.pt-birth-flower-table td:nth-child(3) {
    white-space: normal;
}

.pt-birth-flower-table tr.is-today td {
    background: #fff8e1;
    font-weight: 700;
}

@media (max-width: 30rem) {
    .pt-birth-flower-table {
        display: block;
        overflow-x: auto;
    }
}
