/* Birthdays page */

.month-nav {
    background: var(--surface);
    padding: 16px 16px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.month-nav__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 10px;
}

.month-nav__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.month-nav__btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.month-nav__label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    font-weight: 700;
}

.month-nav__label svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.4;
}

.month-nav__subtitle {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.birthday-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 14px;
}

.birthday-card__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 44px;
    padding-right: 12px;
    border-right: 1px solid #e5e5ea;
}

.birthday-card__month {
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.04em;
}

.birthday-card__day {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.birthday-card__dow {
    font-size: 0.55rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.birthday-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e5e5ea;
    object-fit: cover;
    flex-shrink: 0;
}

.birthday-card__avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.birthday-card__avatar--placeholder svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.birthday-card__info {
    flex: 1;
    min-width: 0;
}

.birthday-card__name {
    font-size: 0.95rem;
    font-weight: 700;
}

.birthday-card__team {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.birthday-card__cake {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.birthday-card__cake svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
}
