.nsb-booking-wrap {
    max-width: 900px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
}
.nsb-title {
    text-align: center;
    color: #d63384;
    font-size: 28px;
    margin-bottom: 5px;
}
.nsb-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 30px;
}
.nsb-booking-layout {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.nsb-cal-section {
    flex: 0 0 340px;
}
.nsb-slots-and-form {
    flex: 1;
    min-width: 280px;
}
.nsb-cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}
.nsb-nav-btn {
    background: none;
    border: 2px solid #d63384;
    color: #d63384;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
}
.nsb-nav-btn:hover {
    background: #d63384;
    color: #fff;
}
.nsb-pub-calendar table {
    width: 100%;
    border-collapse: collapse;
}
.nsb-pub-calendar th {
    padding: 10px 4px;
    text-align: center;
    color: #999;
    font-size: 12px;
    text-transform: uppercase;
}
.nsb-pub-calendar td {
    padding: 3px;
    text-align: center;
}
.nsb-pub-calendar .nsb-pday {
    width: 38px;
    height: 38px;
    line-height: 38px;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}
.nsb-pub-calendar .nsb-pday:hover {
    background: #fce4ec;
}
.nsb-pub-calendar .nsb-pday.available {
    background: #e8f5e9;
    color: #2e7d32;
    font-weight: 600;
}
.nsb-pub-calendar .nsb-pday.full {
    background: #ffebee;
    color: #c62828;
    text-decoration: line-through;
}
.nsb-pub-calendar .nsb-pday.selected {
    background: #d63384;
    color: #fff;
}
.nsb-pub-calendar .nsb-pday.past {
    color: #ddd;
    cursor: default;
}
.nsb-legend {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    font-size: 12px;
    color: #666;
}
.nsb-legend li {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
}
.nsb-legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,0.05);
}
.nsb-legend-available { background: #e8f5e9; }
.nsb-legend-full      { background: #ffebee; }
.nsb-legend-selected  { background: #d63384; }
.nsb-legend-past      { background: #f2f2f2; }
.nsb-pub-slots {
    margin-bottom: 20px;
}
.nsb-pub-slots h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 12px 0;
    white-space: nowrap;
    color: #555;
}
.nsb-hint {
    color: #999;
    font-style: italic;
}
.nsb-time-slot {
    display: inline-block;
    padding: 10px 18px;
    margin: 5px;
    border: 2px solid #d63384;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    color: #d63384;
    background: #fff;
}
.nsb-time-slot:hover {
    background: #d63384;
    color: #fff;
}
.nsb-time-slot.selected {
    background: #d63384;
    color: #fff;
}
.nsb-time-slot.booked {
    border-color: #ccc;
    color: #ccc;
    cursor: not-allowed;
    text-decoration: line-through;
}
.nsb-booking-form {
    background: #fafafa;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
}
.nsb-booking-form h3 {
    margin-top: 0;
    color: #d63384;
}
.nsb-selected-info {
    background: #fff3e0;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 15px;
}
.nsb-field {
    margin-bottom: 15px;
}
.nsb-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 14px;
}
.nsb-field input,
.nsb-field select,
.nsb-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.nsb-field input:focus,
.nsb-field select:focus,
.nsb-field textarea:focus {
    border-color: #d63384;
    outline: none;
}
.nsb-privacy-field {
    background: #fff;
    padding: 12px 14px;
    border: 1px solid #eee;
    border-radius: 8px;
}
.nsb-privacy-label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400 !important;
    font-size: 13px !important;
    line-height: 1.4;
    cursor: pointer;
    margin: 0 !important;
}
.nsb-privacy-label input[type="checkbox"] {
    width: auto !important;
    margin: 3px 0 0 0 !important;
    flex-shrink: 0;
    accent-color: #d63384;
}
.nsb-privacy-label a {
    color: #d63384;
    text-decoration: underline;
}
.nsb-btn-book {
    background: #d63384;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
}
.nsb-btn-book:hover {
    background: #b52a6f;
}
.nsb-btn-book:disabled {
    background: #ccc;
    cursor: not-allowed;
}
#nsb-pub-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    display: none;
    text-align: center;
}
#nsb-pub-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}
#nsb-pub-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}
@media (max-width: 768px) {
    .nsb-booking-layout {
        flex-direction: column;
    }
    .nsb-cal-section {
        flex: 1;
    }
}
