.nbs-fe {
    --p: #1CB0B5;
    --p-dark: #178A8E;
    --p-light: rgba(28,176,181,0.08);
    --p-glow: rgba(28,176,181,0.20);
    --bg: #F7FAFA;
    --card: #FFFFFF;
    --text: #1F2937;
    --muted: #6B7280;
    --border: #E5E7EB;
    --soft-border: #F3F4F6;

    font-family: "Red Hat Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text);
    max-width: 820px;
    margin: 0 auto;
    padding: 24px 20px;
    background: transparent;
    -webkit-font-smoothing: antialiased;
}

.nbs-fe *,
.nbs-fe *::before,
.nbs-fe *::after { box-sizing: border-box; }

.nbs-fe-inner {
    background: var(--card);
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(28,176,181,0.08), 0 2px 8px rgba(0,0,0,0.04);
    overflow: hidden;
    border: 1px solid var(--soft-border);
}

/* Spinner */
.nbs-spinner {
    width: 38px;
    height: 38px;
    border: 3px solid var(--border);
    border-top-color: var(--p);
    border-radius: 50%;
    animation: nbs-spin 0.8s linear infinite;
}
@keyframes nbs-spin { to { transform: rotate(360deg); } }

.nbs-fe-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* ====== Progress sáv ====== */
.nbs-fe-progress {
    padding: 18px 26px 14px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFB 100%);
    border-bottom: 1px solid var(--soft-border);
}
.nbs-fe-progress-bar {
    height: 6px;
    background: var(--border);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}
.nbs-fe-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--p) 0%, var(--p-dark) 100%);
    border-radius: 999px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
    box-shadow: 0 0 12px var(--p-glow);
}
.nbs-fe-progress-label {
    margin-top: 10px;
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* ====== Tartalom ====== */
.nbs-fe-content {
    padding: 26px;
    min-height: 360px;
}
.nbs-fe-step h2 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.2px;
}
.nbs-fe-step-sub {
    color: var(--muted);
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.5;
}

/* ====== Kolléga kártyák ====== */
.nbs-fe-employees {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
@media (max-width: 900px) {
    .nbs-fe-employees { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .nbs-fe-employees { grid-template-columns: 1fr; }
}
.nbs-fe-emp-card {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border: 1px solid var(--soft-border);
    display: flex;
    flex-direction: column;
}
.nbs-fe-emp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(28,176,181,0.18);
}
.nbs-fe-emp-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--p) 0%, var(--p-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    font-weight: 700;
    overflow: hidden;
    position: relative;
}
.nbs-fe-emp-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.nbs-fe-emp-body {
    padding: 22px 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.nbs-fe-emp-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    letter-spacing: -0.1px;
}
.nbs-fe-emp-bio {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0 0 14px;
    flex: 1;
}
.nbs-fe-emp-btn {
    margin-top: auto;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--p) 0%, var(--p-dark) 100%);
    color: #fff;
    border: 0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 2px 8px var(--p-glow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.nbs-fe-emp-card:hover .nbs-fe-emp-btn {
    box-shadow: 0 6px 16px var(--p-glow);
}

/* ====== Szolgáltatás kártyák ====== */
.nbs-fe-services {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.nbs-fe-srv-card {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 18px 22px;
    cursor: pointer;
    transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 16px;
}
.nbs-fe-srv-card:hover {
    border-color: var(--p);
    transform: translateX(3px);
    box-shadow: 0 8px 20px rgba(28,176,181,0.12);
}
.nbs-fe-srv-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--p-light);
    color: var(--p-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.nbs-fe-srv-info {
    flex: 1;
    min-width: 0;
}
.nbs-fe-srv-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
.nbs-fe-srv-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
}
.nbs-fe-srv-meta {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}
.nbs-fe-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: var(--p-light);
    color: var(--p-dark);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}
.nbs-fe-pill--alt {
    background: #FEF3C7;
    color: #92400E;
}

/* ====== Alszolgáltatások ====== */
.nbs-fe-subservices {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}
.nbs-fe-sub-card {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 14px;
    padding: 14px 18px;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    gap: 14px;
}
.nbs-fe-sub-card:hover {
    border-color: var(--p);
    background: var(--p-light);
}
.nbs-fe-sub-card.is-selected {
    border-color: var(--p);
    background: var(--p-light);
}
.nbs-fe-sub-check {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.15s ease;
    background: #fff;
}
.nbs-fe-sub-card.is-selected .nbs-fe-sub-check {
    background: var(--p);
    border-color: var(--p);
    color: #fff;
}
.nbs-fe-sub-info {
    flex: 1;
    min-width: 0;
}
.nbs-fe-sub-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}
.nbs-fe-sub-price {
    font-size: 13px;
    color: var(--p-dark);
    font-weight: 700;
    flex-shrink: 0;
}

/* ====== Naptár ====== */
.nbs-fe-cal {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 18px;
}
.nbs-fe-cal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.nbs-fe-cal-month {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}
.nbs-fe-cal-nav {
    background: var(--p-light);
    border: 0;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    color: var(--p-dark);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.15s ease;
}
.nbs-fe-cal-nav:hover { background: var(--p); color: #fff; }
.nbs-fe-cal-nav:disabled { opacity: 0.3; cursor: not-allowed; }
.nbs-fe-cal-nav:disabled:hover { background: var(--p-light); color: var(--p-dark); }
.nbs-fe-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}
.nbs-fe-cal-dow {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nbs-fe-cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.12s ease;
    border: 1px solid transparent;
    color: var(--text);
}
.nbs-fe-cal-day.is-empty {
    cursor: default;
}
.nbs-fe-cal-day.is-disabled {
    color: #D1D5DB;
    cursor: not-allowed;
}
.nbs-fe-cal-day.is-today {
    border-color: var(--p);
    color: var(--p-dark);
}
.nbs-fe-cal-day.is-available:hover {
    background: var(--p-light);
    color: var(--p-dark);
    transform: scale(1.05);
}
.nbs-fe-cal-day.is-selected {
    background: linear-gradient(135deg, var(--p) 0%, var(--p-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 12px var(--p-glow);
}
.nbs-fe-cal-day.is-has-slots {
    position: relative;
}
.nbs-fe-cal-day.is-has-slots::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--p);
}
.nbs-fe-cal-day.is-selected.is-has-slots::after {
    background: #fff;
}

/* ====== Idő slot-ok ====== */
.nbs-fe-slots-wrap {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
}
.nbs-fe-slots-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}
.nbs-fe-slots-empty {
    text-align: center;
    color: var(--muted);
    padding: 30px 10px;
    font-size: 14px;
}
.nbs-fe-slots-section {
    margin-bottom: 18px;
}
.nbs-fe-slots-section:last-child { margin-bottom: 0; }
.nbs-fe-slots-section-title {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.nbs-fe-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
}
.nbs-fe-slot {
    padding: 12px 8px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: center;
}
.nbs-fe-slot:hover {
    border-color: var(--p);
    color: var(--p-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px var(--p-glow);
}
.nbs-fe-slot.is-selected {
    background: linear-gradient(135deg, var(--p) 0%, var(--p-dark) 100%);
    color: #fff;
    border-color: var(--p-dark);
    box-shadow: 0 4px 12px var(--p-glow);
}

/* ====== Form ====== */
.nbs-fe-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
}
.nbs-fe-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.nbs-fe-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.2px;
}
.nbs-fe-field input {
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-size: 15px;
    background: #fff;
    color: var(--text);
    min-height: 50px;
    font-family: inherit;
    transition: all 0.15s ease;
}
.nbs-fe-field input:focus {
    outline: none;
    border-color: var(--p);
    box-shadow: 0 0 0 4px var(--p-glow);
}

/* ====== Összegző ====== */
.nbs-fe-summary {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFBFB 100%);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    max-width: 520px;
    margin: 0 auto;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.nbs-fe-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--soft-border);
    font-size: 14px;
    gap: 12px;
}
.nbs-fe-summary-row:last-child {
    border-bottom: 0;
    padding-top: 18px;
    margin-top: 8px;
    border-top: 2px solid var(--border);
    font-size: 17px;
    font-weight: 700;
    color: var(--p-dark);
}
.nbs-fe-summary-row span:first-child {
    color: var(--muted);
    font-weight: 500;
}
.nbs-fe-summary-row span:last-child {
    font-weight: 700;
    color: var(--text);
    text-align: right;
}

/* ====== Sikeres ====== */
.nbs-fe-success {
    text-align: center;
    padding: 24px 16px 8px;
}
.nbs-fe-success-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--p) 0%, var(--p-dark) 100%);
    color: #fff;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    box-shadow: 0 12px 32px var(--p-glow);
    animation: nbs-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes nbs-pop {
    from { transform: scale(0.5); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.nbs-fe-success h2 {
    font-size: 26px;
    margin-bottom: 8px;
    color: var(--text);
}
.nbs-fe-success p {
    color: var(--muted);
    font-size: 15px;
    max-width: 360px;
    margin: 0 auto 24px;
    line-height: 1.5;
}

/* ====== Hibaüzenet ====== */
.nbs-fe-error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13px;
    margin-bottom: 18px;
}

/* ====== Akció gombok ====== */
.nbs-fe-actions {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--soft-border);
}
.nbs-fe-btn {
    padding: 13px 26px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: 0;
    transition: all 0.15s ease;
    font-family: inherit;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.nbs-fe-btn--primary {
    background: linear-gradient(135deg, var(--p) 0%, var(--p-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 12px var(--p-glow);
}
.nbs-fe-btn--primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px var(--p-glow);
}
.nbs-fe-btn--primary:disabled {
    background: var(--border);
    color: var(--muted);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}
.nbs-fe-btn--ghost {
    background: transparent;
    color: var(--muted);
}
.nbs-fe-btn--ghost:hover {
    background: var(--soft-border);
    color: var(--text);
}

/* ====== Reszponzív ====== */
@media (max-width: 768px) {
    .nbs-fe-employees {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .nbs-fe-emp-body { padding: 18px 18px 20px; }
    .nbs-fe-emp-name { font-size: 18px; }
}

@media (max-width: 420px) {
    .nbs-fe-srv-card { flex-direction: column; align-items: stretch; }
    .nbs-fe-srv-meta { flex-direction: row; }
}
/* ============================================================
   Régi class-ekhez (szolgáltatás, alszolg, naptár, idő slot, form)
   ============================================================ */

.nbs-fe-subtitle {
    color: var(--muted);
    font-size: 14px;
    margin: -18px 0 22px;
    font-weight: 500;
}

.nbs-fe-empty {
    text-align: center;
    color: var(--muted);
    padding: 40px 20px;
    font-size: 14px;
    background: #FAFBFB;
    border-radius: 12px;
    border: 1px dashed var(--border);
}

/* ====== Szolgáltatások (nbs-fe-grid + nbs-fe-card) ====== */
.nbs-fe-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 8px;
}
.nbs-fe-card {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 18px 22px;
    cursor: pointer;
    transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.nbs-fe-card:hover {
    border-color: var(--p);
    transform: translateX(3px);
    box-shadow: 0 8px 20px rgba(28,176,181,0.12);
}
.nbs-fe-card-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 6px;
}
.nbs-fe-card-bio {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0 0 12px;
}
.nbs-fe-service-meta {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}

/* ====== Alszolgáltatások (nbs-fe-sub-list, nbs-fe-sub-item) ====== */
.nbs-fe-sub-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.nbs-fe-sub-item {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 14px;
    padding: 14px 18px;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}
.nbs-fe-sub-item:hover {
    border-color: var(--p);
    background: var(--p-light);
}
.nbs-fe-sub-item.is-selected {
    border-color: var(--p);
    background: var(--p-light);
}
.nbs-fe-sub-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--p);
    margin: 0 !important;
    cursor: pointer;
}
.nbs-fe-sub-name {
    flex: 1;
    font-weight: 600;
    color: var(--text);
}
.nbs-fe-sub-price {
    color: var(--p-dark);
    font-weight: 700;
    font-size: 14px;
}

/* ====== Naptár (nbs-fe-cal-month, -grid, -day stb.) ====== */
.nbs-fe-cal {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: start;
}
.nbs-fe-cal > .nbs-fe-cal-month { margin-bottom: 0; }
@media (max-width: 768px) {
    .nbs-fe-cal {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}
.nbs-fe-cal-month {
    margin-bottom: 18px;
}
.nbs-fe-cal-month-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 10px;
}
.nbs-fe-cal-month-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    flex: 1;
}
.nbs-fe-cal-prev,
.nbs-fe-cal-next {
    background: var(--p-light);
    border: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    color: var(--p-dark);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.15s ease;
    line-height: 1;
}
.nbs-fe-cal-prev:hover,
.nbs-fe-cal-next:hover {
    background: var(--p);
    color: #fff;
}
.nbs-fe-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.nbs-fe-cal-dow {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nbs-fe-cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.12s ease;
    border: 1px solid transparent;
    color: var(--text);
    background: #fff;
    min-height: 32px;
}
.nbs-fe-cal-day.is-empty {
    cursor: default;
    pointer-events: none;
}
.nbs-fe-cal-day.is-disabled {
    color: #D1D5DB;
    cursor: not-allowed;
}
.nbs-fe-cal-day.is-available {
    background: var(--p-light);
    color: var(--p-dark);
}
.nbs-fe-cal-day.is-available:hover {
    background: var(--p);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 12px var(--p-glow);
}
.nbs-fe-cal-day.is-selected {
    background: linear-gradient(135deg, var(--p) 0%, var(--p-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 12px var(--p-glow);
}

/* ====== Idő slot-ok (nbs-fe-slots-area, -slots, -slot) ====== */
.nbs-fe-slots-area {
    background: #FAFBFB;
    border-radius: 14px;
    padding: 16px;
    margin-top: 0;
    max-height: 380px;
    overflow-y: auto;
}
.nbs-fe-slots-area::-webkit-scrollbar { width: 6px; }
.nbs-fe-slots-area::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}
.nbs-fe-slots-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nbs-fe-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
@media (max-width: 768px) {
    .nbs-fe-slots {
        grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    }
}
.nbs-fe-slot {
    padding: 12px 8px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: center;
    font-family: inherit;
}
.nbs-fe-slot:hover {
    border-color: var(--p);
    color: var(--p-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px var(--p-glow);
}
.nbs-fe-slot.is-selected {
    background: linear-gradient(135deg, var(--p) 0%, var(--p-dark) 100%);
    color: #fff;
    border-color: var(--p-dark);
    box-shadow: 0 4px 12px var(--p-glow);
}

/* ====== Form (nbs-fe-form, nbs-fe-field) — már megvolt ====== */

/* ====== Summary (.nbs-fe-summary-row, label, value) ====== */
.nbs-fe-summary-label {
    color: var(--muted);
    font-weight: 500;
}
.nbs-fe-summary-value {
    font-weight: 700;
    color: var(--text);
    text-align: right;
}

/* ====== Success (régi class-ek) ====== */
.nbs-fe-success-text {
    color: var(--muted);
    font-size: 15px;
    max-width: 360px;
    margin: 0 auto 24px;
    line-height: 1.5;
}
.nbs-fe-success-details {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFBFB 100%);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
    max-width: 480px;
    margin: 0 auto 22px;
    text-align: left;
}
/* Téma override-ok eltávolítása - clean focus / hover */
.nbs-fe button,
.nbs-fe input,
.nbs-fe select,
.nbs-fe textarea,
.nbs-fe .nbs-fe-slot,
.nbs-fe .nbs-fe-cal-day,
.nbs-fe .nbs-fe-emp-card,
.nbs-fe .nbs-fe-card,
.nbs-fe .nbs-fe-sub-item,
.nbs-fe .nbs-fe-btn,
.nbs-fe .nbs-fe-cal-prev,
.nbs-fe .nbs-fe-cal-next,
.nbs-fe .nbs-fe-emp-btn {
    outline: 0 !important;
    -webkit-tap-highlight-color: transparent;
}
.nbs-fe button:focus-visible,
.nbs-fe input:focus-visible,
.nbs-fe .nbs-fe-slot:focus-visible,
.nbs-fe .nbs-fe-cal-day:focus-visible {
    outline: 2px solid var(--p) !important;
    outline-offset: 2px;
}

/* Téma override-ok ELIMINÁLÁSA */
.nbs-fe button::-moz-focus-inner {
    border: 0;
}

/* Időpont hover - csak a saját szín */
.nbs-fe .nbs-fe-slot {
    background-color: #fff !important;
}
.nbs-fe .nbs-fe-slot:hover {
    background-color: #fff !important;
    color: var(--p-dark) !important;
    border-color: var(--p) !important;
}
.nbs-fe .nbs-fe-slot.is-selected,
.nbs-fe .nbs-fe-slot.is-selected:hover {
    background: linear-gradient(135deg, var(--p) 0%, var(--p-dark) 100%) !important;
    color: #fff !important;
    border-color: var(--p-dark) !important;
}

/* Naptár nap hover - csak a saját szín */
.nbs-fe .nbs-fe-cal-day.is-available {
    background-color: var(--p-light) !important;
    color: var(--p-dark) !important;
}
.nbs-fe .nbs-fe-cal-day.is-available:hover {
    background-color: var(--p) !important;
    color: #fff !important;
}
.nbs-fe .nbs-fe-cal-day.is-selected,
.nbs-fe .nbs-fe-cal-day.is-selected:hover {
    background: linear-gradient(135deg, var(--p) 0%, var(--p-dark) 100%) !important;
    color: #fff !important;
}

/* Gombok */
.nbs-fe .nbs-fe-btn--primary,
.nbs-fe .nbs-fe-btn--primary:hover {
    background: linear-gradient(135deg, var(--p) 0%, var(--p-dark) 100%) !important;
    color: #fff !important;
}
.nbs-fe .nbs-fe-btn--ghost {
    background: transparent !important;
    color: var(--muted) !important;
}
.nbs-fe .nbs-fe-btn--ghost:hover {
    background: var(--soft-border) !important;
    color: var(--text) !important;
}

/* Kolléga kártya gomb */
.nbs-fe .nbs-fe-emp-btn,
.nbs-fe .nbs-fe-emp-btn:hover {
    background: linear-gradient(135deg, var(--p) 0%, var(--p-dark) 100%) !important;
    color: #fff !important;
}

/* Naptár nav gombok */
.nbs-fe .nbs-fe-cal-prev,
.nbs-fe .nbs-fe-cal-next {
    background-color: var(--p-light) !important;
    color: var(--p-dark) !important;
}
.nbs-fe .nbs-fe-cal-prev:hover,
.nbs-fe .nbs-fe-cal-next:hover {
    background-color: var(--p) !important;
    color: #fff !important;
}
.nbs-fe-required {
    color: #DC2626;
    font-weight: 700;
    margin-left: 2px;
}