/**
 * Frontend CSS - Mobilbarát és modern design
 */

/* Konténer */
.nsb-booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
}

.nsb-booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.nsb-booking-header h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #2c3e50;
}

.nsb-booking-header p {
    font-size: 1.2em;
    color: #7f8c8d;
}

/* Tab navigáció */
.nsb-categories-tabs {
    margin-top: 30px;
}

.nsb-tabs-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 10px;
}

.nsb-tab-button {
    background: #f8f9fa;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    transition: all 0.3s ease;
    color: #000000;
    font-weight: 500;
}

.nsb-tab-button:hover {
    background: #f8f9fa;
    color: #2c3e50;
}

.nsb-tab-button.active {
    background: #8c703a;
    color: white;
    font-weight: 600;
}

.nsb-tab-panel {
    display: none;
}

.nsb-tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Kategória szekció */
.nsb-category-section {
    margin-bottom: 50px;
}

.nsb-category-title {
    font-size: 2em;
    margin-bottom: 10px;
    color: #2c3e50;
    border-left: 5px solid #8c703a;
    padding-left: 15px;
}

.nsb-category-description {
    font-size: 1.1em;
    color: #7f8c8d;
    margin-bottom: 20px;
    padding-left: 20px;
}

/* Szolgáltatások lista (Treatwell style) */
.nsb-services-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
}

/* Szolgáltatás kártya - lista sor */
.nsb-service-card {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px;
    transition: background 0.2s ease;
}

.nsb-service-card:hover {
    background: #fafafa;
}

.nsb-service-card:last-child {
    border-bottom: none;
}

/* Service header - fő sor */
.nsb-service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
    background: transparent;
    color: inherit;
    gap: 20px;
}

.nsb-service-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
}

.nsb-service-name {
    font-size: 1em;
    margin: 0;
    font-weight: 600;
    color: #2c3e50;
    flex: 1;
}

.nsb-service-price {
    font-size: 1em;
    font-weight: 600;
    color: #2c3e50;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nsb-service-duration {
    font-size: 0.9em;
    color: #7f8c8d;
    margin-top: 5px;
}

.nsb-service-body {
    padding: 0;
}

.nsb-service-footer {
    padding: 0;
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
}

/* Gombok - Treatwell stílus */
.nsb-button {
    display: inline-block;
    padding: 10px 24px;
    border: 2px solid #8c703a;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    background: white;
    color: #8c703a;
}

.nsb-button-primary {
    background: #8c703a;
    color: white;
    border-color: #8c703a;
}

.nsb-button-primary:hover {
    background: #d43f2f;
    border-color: #d43f2f;
}

.nsb-button-secondary {
    background: white;
    color: #8c703a;
    border-color: #8c703a;
}

.nsb-button-secondary:hover {
    background: #fff5f4;
}

/* Modal */
.nsb-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
    animation: fadeIn 0.3s ease;
}

.nsb-modal.active {
    display: block;
}

.nsb-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.nsb-modal-close {
    color: #aaa;
    float: right;
    font-size: 35px;
    font-weight: bold;
    padding: 10px 20px;
    cursor: pointer;
}

.nsb-modal-close:hover,
.nsb-modal-close:focus {
    color: #8c703a;
}

.nsb-modal-body {
    padding: 30px;
}

.nsb-modal-body h3 {
    color: #2c3e50;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.nsb-modal-service-info {
    background: #ecf0f1;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.nsb-modal-service-info p {
    margin: 5px 0;
    color: #2c3e50;
}

/* Űrlap */
.nsb-form-group {
    margin-bottom: 16px;
}

.nsb-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9em;
}

.nsb-form-group input,
.nsb-form-group select,
.nsb-form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.nsb-form-group input:focus,
.nsb-form-group select:focus,
.nsb-form-group textarea:focus {
    outline: none;
    border-color: #8c703a;
    box-shadow: 0 0 0 3px rgba(140, 112, 58, 0.1);
}

.nsb-form-notice {
    background: #fff3cd;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #ffc107;
    margin: 20px 0;
}

.nsb-form-notice p {
    margin: 5px 0;
    color: #856404;
}

.nsb-form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.nsb-form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.nsb-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.nsb-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Értesítések */
.nsb-notice {
    padding: 15px 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.nsb-notice-info {
    background: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

/* Responsive design */
@media (max-width: 768px) {
    .nsb-booking-header h2 {
        font-size: 2em;
    }

    .nsb-tabs-navigation {
        flex-direction: column;
    }

    .nsb-tab-button {
        width: 100%;
        text-align: left;
    }

    .nsb-services-grid {
        grid-template-columns: 1fr;
    }

    .nsb-service-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .nsb-modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .nsb-form-actions {
        flex-direction: column;
    }

    .nsb-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nsb-booking-container {
        padding: 10px;
    }

    .nsb-booking-header h2 {
        font-size: 1.5em;
    }

    .nsb-category-title {
        font-size: 1.5em;
    }

    .nsb-modal-body {
        padding: 20px;
    }
}

/* ========= OPCIÓK STÍLUSOK (Treatwell style) ========= */

/* Service card módosítások opciókhoz */
.nsb-service-card.has-options .nsb-service-header {
    cursor: pointer;
}

.nsb-toggle-icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
    font-size: 0.8em;
    color: #7f8c8d;
}

.nsb-toggle-icon.rotated {
    transform: rotate(180deg);
}

/* Opciók lista - egyszerű lista stílus */
.nsb-service-options {
    padding: 15px 0 0 20px;
    background: transparent;
}

.nsb-service-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.nsb-service-option:hover {
    background: #fafafa;
}

.nsb-service-option:last-child {
    border-bottom: none;
}

.nsb-option-info {
    flex: 1;
}

.nsb-option-name {
    font-weight: 400;
    font-size: 0.95em;
    color: #2c3e50;
    margin-bottom: 5px;
}

.nsb-option-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85em;
    color: #7f8c8d;
}

.nsb-option-duration {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nsb-option-price-action {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nsb-option-price {
    font-size: 1em;
    font-weight: 600;
    color: #2c3e50;
    white-space: nowrap;
}

.nsb-button-select {
    padding: 8px 20px;
    background: white;
    color: #8c703a;
    border: 2px solid #8c703a;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nsb-button-select:hover {
    background: #fff5f4;
}

/* Details button - link stílus */
.nsb-service-description {
    margin-top: 8px;
}

.nsb-details-button {
    background: transparent;
    border: none;
    color: #8c703a;
    padding: 5px;
    font-size: 0.9em;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.nsb-details-button:hover {
    color: #ebecea;
    background-color: none;
}

/* Details modal */
.nsb-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.nsb-details-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.nsb-details-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
}

.nsb-details-close:hover {
    color: #000;
}

.nsb-details-content h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #2c3e50;
}

.nsb-details-content p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .nsb-service-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .nsb-option-price-action {
        width: 100%;
        justify-content: space-between;
    }

    .nsb-button-select {
        flex: 1;
        min-width: 120px;
    }
}

/* ========= NAPTÁR STÍLUSOK ========= */

.nsb-calendar-container {
    max-width: 900px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nsb-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.nsb-calendar-header h2 {
    margin: 0;
    font-size: 1.5em;
    color: #2c3e50;
}

.nsb-cal-nav {
    color: #8c703a;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 15px;
    border: 2px solid #8c703a;
    border-radius: 4px;
    transition: all 0.2s ease;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

.nsb-cal-nav:hover {
    background: #8c703a;
    color: white;
}

.nsb-cal-nav-disabled {
    color: #ccc;
    border-color: #e0e0e0;
    cursor: not-allowed;
    opacity: 0.5;
}

.nsb-cal-nav-disabled:hover {
    background: transparent;
    color: #ccc;
}

/* Naptár táblázat */
.nsb-calendar {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.nsb-calendar thead th {
    padding: 12px 5px;
    text-align: center;
    font-weight: 600;
    color: #7f8c8d;
    border-bottom: 2px solid #e0e0e0;
    font-size: 0.9em;
}

.nsb-calendar tbody td {
    padding: 0;
    height: 80px;
    vertical-align: top;
    border: 1px solid #e0e0e0;
    background: white;
    transition: background 0.2s ease;
}

.nsb-cal-empty {
    background: #f8f9fa !important;
}

.nsb-cal-day {
    cursor: default;
    position: relative;
}

.nsb-cal-day-number {
    padding: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95em;
}

.nsb-cal-today {
    background: #fff3e0 !important;
}

.nsb-cal-today .nsb-cal-day-number {
    color: #8c703a;
    font-weight: 700;
}

.nsb-cal-has-bookings {
    background: #e8f5e9 !important;
    cursor: pointer;
}

.nsb-cal-has-bookings:hover {
    background: #c8e6c9 !important;
}

.nsb-cal-booking-count {
    font-size: 0.75em;
    color: #2e7d32;
    padding: 0 8px 8px 8px;
    font-weight: 600;
}

/* Szabad hely jelzése - zöld kiemelés */
.nsb-cal-available {
    border: 2px solid #4caf50 !important;
    background: #f1f8f4 !important;
}

.nsb-cal-available .nsb-cal-day-number {
    color: #2e7d32;
    font-weight: 700;
}

.nsb-cal-available:hover {
    background: #e8f5e9 !important;
    border-color: #45a049 !important;
}

/* Kattintható napok */
.nsb-cal-clickable {
    cursor: pointer !important;
}

.nsb-cal-clickable:hover {
    background: #f0f0f0 !important;
}

/* Napi részletek panel */
.nsb-cal-day-details {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.nsb-cal-day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.nsb-cal-day-details h3 {
    margin: 0;
    color: #2c3e50;
}

.nsb-button-close {
    background: transparent;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 1;
}

.nsb-button-close:hover {
    color: #8c703a;
}

.nsb-cal-bookings-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.nsb-cal-bookings-list li {
    padding: 12px;
    margin-bottom: 8px;
    background: white;
    border-radius: 4px;
    border-left: 4px solid #8c703a;
}

.nsb-cal-status {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.85em;
    font-weight: 600;
}

.nsb-cal-status-pending {
    background: #fff3e0;
    color: #f57c00;
}

.nsb-cal-status-confirmed {
    background: #e8f5e9;
    color: #2e7d32;
}

.nsb-cal-status-rejected {
    background: #ffebee;
    color: #c62828;
}

.nsb-cal-status-completed {
    background: #e3f2fd;
    color: #1565c0;
}

/* Responsive naptár */
@media (max-width: 768px) {
    .nsb-calendar-container {
        padding: 10px;
    }

    .nsb-calendar-header {
        flex-direction: column;
        gap: 10px;
    }

    .nsb-calendar thead th {
        font-size: 0.8em;
        padding: 8px 2px;
    }

    .nsb-calendar tbody td {
        height: 60px;
        font-size: 0.85em;
    }

    .nsb-cal-day-number {
        padding: 5px;
    }

    .nsb-cal-booking-count {
        font-size: 0.7em;
        padding: 0 5px 5px 5px;
    }
}

/* ========= NAPTÁR FOGLALÁSI ŰRLAP ========= */

.nsb-cal-booking-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.nsb-cal-booking-section h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.1em;
}

.nsb-cal-existing-bookings {
    margin-bottom: 20px;
}

.nsb-cal-existing-bookings h5 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95em;
    font-weight: 600;
}

.nsb-cal-booking-form {
    max-width: 100%;
}

.nsb-cal-booking-form .nsb-form-row {
    margin-bottom: 15px;
}

.nsb-cal-booking-form label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: 600;
    font-size: 0.9em;
}

.nsb-cal-booking-form input[type="text"],
.nsb-cal-booking-form input[type="email"],
.nsb-cal-booking-form input[type="tel"],
.nsb-cal-booking-form input[type="date"],
.nsb-cal-booking-form select,
.nsb-cal-booking-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95em;
    box-sizing: border-box;
}

.nsb-cal-booking-form input[readonly] {
    background: #f5f5f5;
    color: #666;
}

.nsb-cal-booking-form textarea {
    resize: vertical;
    min-height: 60px;
}

.nsb-cal-booking-form button[type="submit"] {
    width: 100%;
    margin-top: 10px;
}

.nsb-cal-booking-form .nsb-form-message {
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 4px;
    font-size: 0.9em;
}

.nsb-cal-booking-form .nsb-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.nsb-cal-booking-form .nsb-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========= ÚJ: BOOKING CALENDAR WIZARD STÍLUSOK ========= */

.nsb-booking-calendar .nsb-cal-day {
    cursor: default;
}

.nsb-cal-selectable {
    cursor: pointer !important;
}

.nsb-cal-selectable:hover {
    background: #e3f2fd !important;
    transform: scale(1.02);
}

.nsb-cal-past {
    opacity: 0.4;
    cursor: not-allowed !important;
}

.nsb-cal-closed {
    background: #fafafa !important;
    cursor: not-allowed !important;
}

.nsb-cal-closed-label {
    font-size: 0.65em;
    color: #999;
    padding: 0 5px;
}

.nsb-cal-booking-indicator {
    color: #8c703a;
    font-size: 1.2em;
    text-align: center;
    line-height: 1;
}

/* Booking Wizard Panel */
.nsb-booking-wizard {
    margin-top: 30px;
    background: white;
    border: 2px solid #8c703a;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
}

.nsb-wizard-header {
    background: #8c703a;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nsb-wizard-header h3 {
    margin: 0;
    color: white;
    font-size: 1.3em;
}

.nsb-wizard-steps {
    padding: 30px;
}

.nsb-wizard-step {
    animation: fadeIn 0.3s ease;
}

.nsb-step-title {
    color: #2c3e50;
    font-size: 1.2em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

/* Wizard gombok */
.nsb-wizard-button {
    display: block;
    width: 100%;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.nsb-wizard-button:hover {
    border-color: #8c703a;
    background: #fff9f5;
    transform: translateX(5px);
}

.nsb-wizard-button-title {
    display: block;
    font-size: 1.1em;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.nsb-wizard-button-desc {
    display: block;
    font-size: 0.9em;
    color: #7f8c8d;
}

.nsb-wizard-button-price {
    display: block;
    font-size: 0.95em;
    color: #8c703a;
    font-weight: 600;
    margin-top: 5px;
}

/* Időpont gombok - Grid layout a wizard-ban */
#nsb-time-list,
#nsb-time-list.nsb-time-slots {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)) !important;
    gap: 10px !important;
    margin: 20px 0 !important;
}

.nsb-time-button {
    display: inline-block !important;
    width: auto !important;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 15px 10px;
    font-size: 1em;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    position: relative;
    z-index: 1;
}

.nsb-time-button:hover {
    border-color: #8c703a;
    background: #8c703a;
    color: white;
    transform: scale(1.05);
}

.nsb-time-button:active {
    transform: scale(0.98);
}

/* Vissza gomb */
.nsb-back-button {
    background: transparent;
    border: none;
    color: #8c703a;
    padding: 10px 0;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 0.95em;
    transition: color 0.2s ease;
}

.nsb-back-button:hover {
    color: #2c3e50;
    text-decoration: underline;
}

/* Összefoglaló */
.nsb-booking-summary {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.nsb-booking-summary h5 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.1em;
}

.nsb-booking-summary p {
    margin: 8px 0;
    color: #2c3e50;
}

.nsb-button-large {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1em;
}

.nsb-loading {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
}

.nsb-notice {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    padding: 15px;
    border-radius: 4px;
    color: #e65100;
}

/* ========= ÚJ: AVAILABILITY CALENDAR STÍLUSOK ========= */

.nsb-availability-calendar .nsb-cal-day {
    cursor: default;
    text-align: center;
}

.nsb-availability-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
}

.nsb-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
}

.nsb-legend-color {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.nsb-legend-available {
    background: #e8f5e9;
}

.nsb-legend-partial {
    background: #fff3e0;
}

.nsb-legend-closed {
    background: #f5f5f5;
}

/* Elérhetőség állapotok */
.nsb-avail-available {
    background: #e8f5e9 !important;
}

.nsb-avail-partial {
    background: #fff3e0 !important;
}

.nsb-avail-busy {
    background: #ffebee !important;
}

.nsb-avail-closed {
    background: #f5f5f5 !important;
}

.nsb-cal-status-text {
    font-size: 0.7em;
    color: #666;
    padding: 0 5px;
    text-align: center;
}

.nsb-availability-info {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    text-align: center;
}

.nsb-availability-info p {
    margin: 10px 0;
    color: #2c3e50;
}

/* Responsive - Wizard */
@media (max-width: 768px) {
    #nsb-time-list,
    #nsb-time-list.nsb-time-slots {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)) !important;
        gap: 8px !important;
    }

    .nsb-time-button {
        padding: 12px 8px !important;
        font-size: 0.9em !important;
    }

    .nsb-wizard-button {
        padding: 15px;
    }

    .nsb-wizard-button-title {
        font-size: 1em;
    }

    .nsb-availability-legend {
        flex-direction: column;
        gap: 10px;
    }

    .nsb-legend-item {
        justify-content: center;
    }
}

/* Következő szabad időpontok widget */
.nsb-next-available {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
    border: 1px solid #d4e2f7;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nsb-next-title {
    color: #4a5568;
    font-size: 1.3em;
    margin: 0 0 20px 0;
    font-weight: 600;
    text-align: center;
}

.nsb-next-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.nsb-next-item {
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.nsb-next-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.15);
    border-color: #90cdf4;
    background: #f7fafc;
}

.nsb-next-date {
    font-weight: 600;
    color: #2d3748;
    font-size: 1em;
}

.nsb-next-time {
    color: #4299e1;
    font-weight: 500;
    font-size: 0.9em;
    background: #ebf8ff;
    padding: 4px 10px;
    border-radius: 12px;
}

.nsb-next-empty {
    color: #718096;
    text-align: center;
    margin: 10px 0;
    font-size: 1em;
}

.nsb-loading {
    color: #718096;
    text-align: center;
    padding: 10px;
    font-style: italic;
}

/* Responsivitás */
@media (max-width: 768px) {
    .nsb-next-available {
        padding: 20px 15px;
    }

    .nsb-next-title {
        font-size: 1.1em;
    }

    .nsb-next-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .nsb-next-item {
        padding: 12px 15px;
    }

    .nsb-next-date {
        font-size: 0.95em;
    }

    .nsb-next-time {
        font-size: 0.85em;
    }
}

/* ======== UTILITY CLASSES ======== */

/* Display utilities */
.nsb-hidden {
    display: none;
}

.nsb-flex {
    display: flex;
}

.nsb-flex-1 {
    flex: 1;
}

/* Margin utilities */
.nsb-mt-20 {
    margin-top: 20px;
}

.nsb-mb-20 {
    margin-bottom: 20px;
}

/* Text utilities */
.nsb-text-center {
    text-align: center;
}

.nsb-text-error {
    color: #dc3545;
}

.nsb-text-success {
    color: #28a745;
}

.nsb-text-info {
    color: #17a2b8;
}

/* ======== CONFIRMATION PAGE (THANK YOU PAGE) ======== */

.nsb-confirmation-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
}

.nsb-confirmation-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 12px;
}

.nsb-confirmation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    font-weight: bold;
}

.nsb-confirmation-header h1 {
    font-size: 2.5em;
    margin: 0 0 10px 0;
    color: #2e7d32;
}

.nsb-confirmation-header p {
    font-size: 1.2em;
    color: #558b2f;
    margin: 0;
}

.nsb-confirmation-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.nsb-confirmation-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nsb-confirmation-box h2 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 1.3em;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.nsb-confirmation-highlight {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-color: #ffb74d;
}

.nsb-confirmation-highlight h2 {
    color: #e65100;
}

.nsb-confirmation-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.nsb-confirmation-row:last-child {
    border-bottom: none;
}

.nsb-confirmation-label {
    font-weight: 500;
    color: #666;
}

.nsb-confirmation-value {
    color: #2c3e50;
    text-align: right;
}

.nsb-confirmation-footer {
    margin-top: 30px;
}

.nsb-confirmation-notice {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
    margin-bottom: 20px;
}

.nsb-confirmation-notice p {
    margin: 10px 0;
    color: #1565c0;
    line-height: 1.6;
}

.nsb-confirmation-notice p:first-child {
    margin-top: 0;
}

.nsb-confirmation-notice p:last-child {
    margin-bottom: 0;
}

.nsb-confirmation-actions {
    text-align: center;
    margin-top: 30px;
}

.nsb-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.nsb-btn-primary {
    background: #4caf50;
    color: white;
}

.nsb-btn-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Status badges */
.nsb-status-pending,
.nsb-status-confirmed {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.nsb-status-pending {
    background: #fff3cd;
    color: #856404;
}

.nsb-status-confirmed {
    background: #d4edda;
    color: #155724;
}

/* Responsive */
@media (min-width: 768px) {
    .nsb-confirmation-details {
        grid-template-columns: repeat(2, 1fr);
    }

    .nsb-confirmation-box:nth-child(3) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .nsb-confirmation-header {
        padding: 30px 15px;
    }

    .nsb-confirmation-header h1 {
        font-size: 1.8em;
    }

    .nsb-confirmation-icon {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }

    .nsb-confirmation-box {
        padding: 20px;
    }

    .nsb-confirmation-row {
        flex-direction: column;
        gap: 5px;
    }

    .nsb-confirmation-value {
        text-align: left;
    }
}

/* ========================================
   HETI ÉS NAPI NÉZET STÍLUSOK
======================================== */

/* Nézet váltó gombok */
.nsb-view-switcher {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.nsb-view-btn {
    padding: 10px 20px;
    border: 2px solid #ddd;
    background: white;
    color: #333;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nsb-view-btn:hover {
    border-color: #2c3e50;
    background: #f8f9fa;
}

.nsb-view-btn.active {
    border-color: #2c3e50;
    background: #2c3e50;
    color: white;
}

/* Időpont választó widget */
#nsb-time-picker-widget {
    min-height: 200px;
}

.nsb-time-picker-loading {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

/* Napi nézet */
.nsb-daily-view {
    padding: 20px;
}

.nsb-time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.nsb-time-slot {
    padding: 12px 15px;
    border: 2px solid #ddd;
    background: white;
    color: #333;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: center;
}

.nsb-time-slot:hover {
    border-color: #2c3e50;
    background: #f0f4f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.nsb-time-slot.selected {
    border-color: #27ae60;
    background: #27ae60;
    color: white;
}

.nsb-time-slot.selected:hover {
    background: #229954;
}

/* Heti nézet - ACCORDION */
.nsb-weekly-accordion {
    padding: 10px 0;
    max-width: 100%;
}

.nsb-accordion-item {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.nsb-accordion-item:hover {
    border-color: #c0c0c0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nsb-accordion-item.active {
    border-color: #8c703a;
    box-shadow: 0 4px 12px rgba(140, 112, 58, 0.15);
}

.nsb-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    background: #f8f9fa;
    transition: background 0.3s ease;
    user-select: none;
}

.nsb-accordion-header:hover {
    background: #f0f1f2;
}

.nsb-accordion-item.active .nsb-accordion-header {
    background: #8c703a;
    color: white;
}

.nsb-accordion-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 15px;
}

.nsb-accordion-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
    display: inline-block;
    width: 16px;
}

.nsb-accordion-item.active .nsb-accordion-icon {
    transform: rotate(90deg);
}

.nsb-accordion-date {
    font-size: 15px;
}

.nsb-accordion-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

/* Státusz színek */
.nsb-accordion-status.available-high {
    background: #d4edda;
    color: #155724;
}

.nsb-accordion-status.available-medium {
    background: #fff3cd;
    color: #856404;
}

.nsb-accordion-status.available-low {
    background: #f8d7da;
    color: #721c24;
}

.nsb-accordion-status.full {
    background: #e8e8e8;
    color: #666;
}

.nsb-accordion-status.closed {
    background: #e8e8e8;
    color: #999;
}

.nsb-accordion-content {
    display: none;
    padding: 0;
    background: white;
}

.nsb-accordion-times {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.nsb-accordion-times .nsb-time-button {
    width: 100%;
    padding: 12px 10px;
    font-size: 14px;
}

/* Régi heti grid (megtartjuk backup-ként) */
.nsb-weekly-view {
    padding: 20px 10px;
}

.nsb-week-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.nsb-day-column {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background: white;
}

.nsb-day-header {
    background: #2c3e50;
    color: white;
    padding: 12px 10px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
}

.nsb-day-times {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nsb-day-times .nsb-time-slot {
    width: 100%;
    padding: 10px;
    font-size: 13px;
}

.nsb-no-times {
    text-align: center;
    color: #999;
    font-size: 12px;
    padding: 20px 10px;
    font-style: italic;
}

/* Navigációs gombok */
.nsb-date-nav {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.nsb-date-nav .nsb-button {
    padding: 10px 20px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.nsb-date-nav .nsb-button:hover {
    background: #2980b9;
}

/* Kiválasztott időpont */
.nsb-selected-slot {
    background: #d4edda;
    border: 2px solid #28a745;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    text-align: center;
}

.nsb-selected-slot p {
    margin: 5px 0;
    color: #155724;
}

.nsb-selected-datetime {
    font-size: 16px;
}

/* Reszponzív az accordion-hoz */
@media (max-width: 768px) {
    .nsb-view-switcher {
        flex-direction: row;
        gap: 8px;
    }

    .nsb-view-btn {
        flex: 1;
        padding: 10px 12px;
        font-size: 13px;
    }

    .nsb-accordion-header {
        padding: 14px 16px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .nsb-accordion-title {
        font-size: 14px;
        gap: 8px;
    }

    .nsb-accordion-status {
        font-size: 12px;
        padding: 5px 12px;
        width: 100%;
        text-align: center;
        margin-top: 4px;
    }

    .nsb-accordion-times {
        padding: 15px;
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 8px;
    }

    .nsb-accordion-times .nsb-time-button {
        padding: 10px 8px;
        font-size: 13px;
    }
}

/* Reszponzív a heti nézethez (régi) */
@media (max-width: 768px) {

    .nsb-week-grid {
        grid-template-columns: 1fr;
    }

    .nsb-time-slots {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 8px;
    }

    .nsb-time-slot {
        padding: 10px 8px;
        font-size: 13px;
    }
}

/* ============================================ */
/* CALENDAR VIEW SWITCHER (Napi/Heti/Havi)     */
/* ============================================ */

.nsb-calendar-view-switcher {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.nsb-cal-view-btn {
    background: #fff;
    border: 2px solid #dee2e6;
    color: #495057;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    text-decoration: none;
    user-select: none;
}

.nsb-cal-view-btn:hover {
    background: #e9ecef;
    border-color: #3498db;
    transform: translateY(-2px);
}

.nsb-cal-view-btn.nsb-cal-view-active {
    background: #3498db;
    border-color: #3498db;
    color: #fff;
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

/* Napi nézet */
.nsb-daily-content {
    padding: 20px;
}

.nsb-daily-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.nsb-daily-header h3 {
    flex: 1;
    text-align: center;
    margin: 0;
    font-size: 20px;
    color: #2c3e50;
}

.nsb-cal-daily-prev,
.nsb-cal-daily-next {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nsb-cal-daily-prev:hover,
.nsb-cal-daily-next:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

.nsb-daily-info {
    text-align: center;
    padding: 30px;
}

.nsb-availability-badge {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.nsb-badge-available {
    background: #d4edda;
    color: #155724;
    border: 2px solid #28a745;
}

.nsb-badge-full {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #dc3545;
}

.nsb-badge-closed {
    background: #d1ecf1;
    color: #0c5460;
    border: 2px solid #17a2b8;
}

.nsb-badge-past {
    background: #e2e3e5;
    color: #383d41;
    border: 2px solid #6c757d;
}

.nsb-calendar-hint {
    font-size: 15px;
    color: #6c757d;
    margin: 15px 0;
}

.nsb-cal-book-day {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 15px;
}

.nsb-cal-book-day:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(40, 167, 69, 0.3);
}

/* Heti nézet */
.nsb-weekly-content {
    padding: 20px;
}

.nsb-weekly-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.nsb-weekly-header h3 {
    flex: 1;
    text-align: center;
    margin: 0;
    font-size: 18px;
    color: #2c3e50;
}

.nsb-cal-weekly-prev,
.nsb-cal-weekly-next {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nsb-cal-weekly-prev:hover,
.nsb-cal-weekly-next:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

.nsb-weekly-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.nsb-week-day {
    background: #fff;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.2s ease;
}

.nsb-week-day:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.nsb-week-day-available {
    border-color: #28a745;
    background: #f8fff9;
}

.nsb-week-day-full {
    border-color: #dc3545;
    background: #fff5f5;
}

.nsb-week-day-closed,
.nsb-week-day-past {
    opacity: 0.6;
    background: #f8f9fa;
}

.nsb-week-day-header {
    text-align: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.nsb-week-day-header strong {
    display: block;
    font-size: 15px;
    color: #2c3e50;
    margin-bottom: 4px;
}

.nsb-week-day-date {
    display: block;
    font-size: 13px;
    color: #6c757d;
}

.nsb-week-day-body {
    text-align: center;
}

.nsb-week-day .nsb-availability-badge {
    font-size: 14px;
    padding: 8px 12px;
    margin-bottom: 10px;
}

.nsb-week-day .nsb-cal-book-day {
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
}

/* Loading indikátor */
.nsb-loading {
    text-align: center;
    padding: 40px;
    font-size: 16px;
    color: #6c757d;
}

/* Hiba üzenet */
.nsb-error {
    text-align: center;
    padding: 20px;
    color: #dc3545;
    background: #f8d7da;
    border: 1px solid #dc3545;
    border-radius: 6px;
}

/* Reszponzív - Mobil nézet */
@media (max-width: 768px) {
    .nsb-calendar-view-switcher {
        flex-direction: column;
        gap: 8px;
    }

    .nsb-cal-view-btn {
        width: 100%;
        padding: 12px 15px;
        font-size: 14px;
    }

    .nsb-daily-header,
    .nsb-weekly-header {
        flex-direction: column;
        gap: 10px;
    }

    .nsb-daily-header h3,
    .nsb-weekly-header h3 {
        font-size: 16px;
    }

    .nsb-cal-daily-prev,
    .nsb-cal-daily-next,
    .nsb-cal-weekly-prev,
    .nsb-cal-weekly-next {
        width: 100%;
        padding: 10px 15px;
    }

    .nsb-weekly-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .nsb-availability-badge {
        font-size: 16px;
        padding: 12px 20px;
    }

    .nsb-cal-book-day {
        padding: 12px 20px;
        font-size: 15px;
    }
}

/* ============================================ */
/* WIZARD BOOKING FORM - Szebb Form Stílusok  */
/* ============================================ */

#nsb-wizard-booking-form .nsb-form-row {
    margin-bottom: 20px;
}

#nsb-wizard-booking-form .nsb-form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
    color: #2c3e50;
}

#nsb-wizard-booking-form input[type="text"],
#nsb-wizard-booking-form input[type="email"],
#nsb-wizard-booking-form input[type="tel"],
#nsb-wizard-booking-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

#nsb-wizard-booking-form input:focus,
#nsb-wizard-booking-form textarea:focus {
    outline: none;
    border-color: #8c703a;
    box-shadow: 0 4px 12px rgba(140, 112, 58, 0.15);
    transform: translateY(-1px);
}

#nsb-wizard-booking-form input:hover:not(:focus),
#nsb-wizard-booking-form textarea:hover:not(:focus) {
    border-color: #c9a961;
}

#nsb-wizard-booking-form textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

#nsb-wizard-booking-form input::placeholder,
#nsb-wizard-booking-form textarea::placeholder {
    color: #999;
    font-style: italic;
}

/* Summary box stílus */
.nsb-booking-summary {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-left: 4px solid #8c703a;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
}

.nsb-booking-summary h5 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #8c703a;
    font-size: 18px;
    font-weight: 700;
}

.nsb-booking-summary p {
    margin: 8px 0;
    font-size: 15px;
    color: #2c3e50;
}

.nsb-booking-summary strong {
    color: #495057;
    font-weight: 600;
}

/* Submit button */
#nsb-wizard-booking-form button[type="submit"] {
    width: 100%;
    padding: 16px 24px;
    background: #8c703a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(140, 112, 58, 0.2);
    margin-top: 20px;
}

#nsb-wizard-booking-form button[type="submit"]:hover {
    background: #6f5a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(140, 112, 58, 0.3);
}

#nsb-wizard-booking-form button[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(140, 112, 58, 0.2);
}

/* Responsive - Mobil */
@media (max-width: 768px) {
    #nsb-wizard-booking-form input[type="text"],
    #nsb-wizard-booking-form input[type="email"],
    #nsb-wizard-booking-form input[type="tel"],
    #nsb-wizard-booking-form textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .nsb-booking-summary {
        padding: 15px;
    }

    .nsb-booking-summary h5 {
        font-size: 16px;
    }

    #nsb-wizard-booking-form button[type="submit"] {
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* ===========================================
   PRICELIST SHORTCODE STYLES
   =========================================== */

.nsb-pricelist-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
}

.nsb-pricelist-category {
    margin-bottom: 40px;
}

.nsb-pricelist-category-title {
    font-size: 1.5em;
    color: #8c703a;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 3px solid #8c703a;
}

.nsb-pricelist-category-desc {
    color: #7f8c8d;
    font-size: 0.95em;
    margin-bottom: 15px;
}

.nsb-pricelist-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 8px rgba(140, 112, 58, 0.15);
    border-radius: 8px;
    overflow: hidden;
}

.nsb-pricelist-table thead {
    background: #8c703a;
    color: #fff;
}

.nsb-pricelist-table th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nsb-pricelist-table th.nsb-pricelist-duration,
.nsb-pricelist-table th.nsb-pricelist-price {
    text-align: center;
    width: 100px;
}

.nsb-pricelist-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.nsb-pricelist-table tbody tr:last-child {
    border-bottom: none;
}

.nsb-pricelist-table tbody tr:hover {
    background: #faf8f3;
}

.nsb-pricelist-table td {
    padding: 15px 20px;
    vertical-align: middle;
}

.nsb-pricelist-table td.nsb-pricelist-duration,
.nsb-pricelist-table td.nsb-pricelist-price {
    text-align: center;
    font-weight: 500;
}

.nsb-pricelist-table td.nsb-pricelist-price {
    font-weight: 700;
    color: #8c703a;
    font-size: 1.1em;
}

/* Szolgáltatás opciókkal */
.nsb-pricelist-service-header {
    background: #f8f9fa;
}

.nsb-pricelist-service-header td {
    padding: 12px 20px;
}

.nsb-pricelist-service-header strong {
    font-size: 1.05em;
    color: #2c3e50;
}

.nsb-pricelist-option {
    background: #fff;
}

.nsb-pricelist-option-name {
    padding-left: 30px !important;
}

.nsb-option-indent {
    color: #8c703a;
    margin-right: 8px;
}

/* Leírás a szolgáltatás neve alatt */
.nsb-pricelist-service-desc {
    display: block;
    font-size: 0.85em;
    color: #7f8c8d;
    font-weight: normal;
    margin-top: 4px;
}

/* Mobil nézet */
@media (max-width: 600px) {
    .nsb-pricelist-container {
        padding: 10px;
    }

    .nsb-pricelist-table th,
    .nsb-pricelist-table td {
        padding: 12px 10px;
        font-size: 0.9em;
    }

    .nsb-pricelist-table th.nsb-pricelist-duration,
    .nsb-pricelist-table th.nsb-pricelist-price,
    .nsb-pricelist-table td.nsb-pricelist-duration,
    .nsb-pricelist-table td.nsb-pricelist-price {
        width: 70px;
    }

    .nsb-pricelist-option-name {
        padding-left: 20px !important;
    }

    .nsb-pricelist-category-title {
        font-size: 1.3em;
    }
}
