.neuroximCalendarContainer {
    width: 100%;
    max-width: 450px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.neuroximCalendarHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.neuroximCalendarHeader h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.neuroximCalendarNav {
    display: flex;
    gap: 8px;
}

.neuroximCalendarNav button {
    width: 32px;
    height: 32px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all 0.2s ease;
}

.neuroximCalendarNav button:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.neuroximCalendarWeekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 4px;
}

.neuroximCalendarWeekday {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted);
    padding: 6px 0;
}

.neuroximCalendarGrid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.neuroximCalendarCell {
    min-height: 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
    padding: 6px 4px;
}

.neuroximCalendarCell--empty {
    background: transparent;
    cursor: default;
}

.neuroximCalendarCell--noDate {
    background: transparent;
    color: #ccc;
    cursor: default;
}

.neuroximCalendarCell--hasDate {
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
}

.neuroximCalendarCell--hasDate:hover {
    background: #fffbeb;
    border-color: #f59e0b;
}

.neuroximCalendarCell--unavailable {
    opacity: 0.4;
    cursor: not-allowed;
}

.neuroximCalendarCell--unavailable:hover {
    background: #f9f9f9;
    border-color: #e5e5e5;
}

.neuroximCalendarDay {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.2;
}

.neuroximCalendarPrice {
    font-size: 0.7rem;
    font-weight: 500;
    color: #f59e0b;
    margin-top: 2px;
    line-height: 1.1;
}