.hire-availability-wrapper {
    margin-bottom: 1.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    background: #f8f8fb;
    border: 1px solid #e2e4f0;
}

.hire-availability-header {
    margin-bottom: 0.75rem;
}

.hire-availability-title {
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.hire-availability-subtitle {
    margin: 0;
    font-size: 0.9rem;
    color: #666a80;
}

/* Simple grid calendar shell – you can refine later */
.hire-availability-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-top: 0.75rem;
}

/* Day cell base */
.hire-availability-day {
    padding: 0.4rem 0;
    text-align: center;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease;
}

/* Available */
.hire-availability-day.available {
    background: #e5f9ec;
    border: 1px solid #3cb371;
    color: #245c3b;
}

/* Unavailable */
.hire-availability-day.unavailable {
    background: #ffe1e1;
    border: 1px solid #ff4d4d;
    color: #8f2b2b;
    cursor: not-allowed;
}

/* Past / disabled */
.hire-availability-day.past {
    background: #f1f2f6;
    border: 1px solid #d3d6e0;
    color: #9a9db0;
    cursor: not-allowed;
}

/* Today */
.hire-availability-day.today {
    box-shadow: 0 0 0 2px #4c6fff33;
}

/* Hover */
.hire-availability-day.available:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Legend */
.hire-availability-legend {
    margin-top: 0.75rem;
    display: flex;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: #55596f;
}

.legend-item::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-right: 6px;
    vertical-align: middle;
}

.legend-available::before {
    background: #3cb371;
}

.legend-unavailable::before {
    background: #ff4d4d;
}

.legend-past::before {
    background: #c3c6d4;
}