/*
 * 共通スタイルシート
 * style.css
 */
.guest-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.guest-type.adult {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #bbdefb;
}

.guest-type.child {
    background: #fff3e0;
    color: #ef6c00;
    border: 1px solid #ffe0b2;
}
