/* =========================================================================
   Shared date navigation strip (smw-datestrip-*). Used by all layouts.
   ========================================================================= */

.smw-datestrip-wrap {
    display: flex;
    align-items: stretch;
    gap: 8px;
    margin: 0 0 18px;
    box-sizing: border-box;
}
.smw-datestrip-wrap * { box-sizing: border-box; }

.smw-datestrip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1 1 auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 2px;
}
.smw-datestrip::-webkit-scrollbar { display: none; }

.smw-datestrip-day {
    flex: 0 0 auto;
    min-width: 86px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #e6e8eb;
    border-radius: 12px;
    cursor: pointer;
    font: inherit;
    color: #111827;
    transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
}
.smw-datestrip-day:hover {
    border-color: #c7ccd1;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.smw-datestrip-day.is-active {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}
.smw-datestrip-dow { font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.smw-datestrip-md  { font-size: 13px; font-weight: 500; opacity: .9; }

.smw-datestrip-nav {
    flex: 0 0 auto;
    width: 40px;
    border: 1px solid #e6e8eb;
    background: #fff;
    border-radius: 12px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    color: #6b7280;
    transition: background .15s, color .15s;
}
.smw-datestrip-nav:hover { background: #f8fafc; color: #111827; }
