.naemt-bb-widget {
    display: flex;
    justify-content: center;
    font-family: "Helvetica Neue", Arial, sans-serif;
    width:100%;
    min-height: 525px;
}

.naemt-bb-card {
    width: 100%;
    color: #111827;
}

.naemt-bb-steps {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 24px;
    color: #6b7280;
}

.naemt-bb-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 0 8px;
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: default;
    width: 100%;
    display: block;
}

.naemt-bb-step.is-clickable {
    cursor: pointer;
}

 .naemt-bb-step:focus-visible {
    outline: 2px solid #4338ca;
    outline-offset: 2px;
}

.naemt-bb-step:disabled {
    opacity: 1;
}

.naemt-bb-step::after {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: 0;
    height: 2px;
    background: #e5e7eb;
}

.naemt-bb-step.is-active {
    color: #111827;
    font-weight: 600;
}

.naemt-bb-step.is-active::after {
    background: #4338ca;
}

.naemt-bb-title {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
}

.naemt-bb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 16px;
}

.naemt-bb-choice {
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 14px 0;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.naemt-bb-choice:hover {
    border-color: #4338ca;
    color: #4338ca;
}

.naemt-bb-choice.is-selected {
    background: #4338ca;
    border-color: #4338ca;
    color: #fff;
    font-weight: 600;
}

.naemt-bb-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.naemt-bb-calendar-month {
    font-size: 18px;
    font-weight: 600;
}

.naemt-bb-calendar-nav {
    background: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.naemt-bb-calendar-nav:hover {
    background: #edf2ff;
    border-color: #4338ca;
    color: #4338ca;
}

.naemt-bb-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.naemt-bb-calendar-day {
    font-size: 13px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
}

.naemt-bb-calendar-cell {
    border-radius: 12px;
    padding: 10px 0;
    font-size: 15px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.naemt-bb-calendar-cell.is-disabled {
    color: #d1d5db;
    cursor: not-allowed;
}

.naemt-bb-calendar-cell.is-available:hover {
    border-color: #4338ca;
    color: #4338ca;
}

.naemt-bb-calendar-cell.is-selected {
    border-color: #4338ca;
    color: #4338ca;
    font-weight: 600;
}

.naemt-bb-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.naemt-bb-form .full-row {
    grid-column: 1 / -1;
}

.naemt-bb-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #4b5563;
}

.naemt-bb-form input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    padding: 12px 14px;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.naemt-bb-form input:focus {
    outline: none;
    border-color: #4338ca;
    box-shadow: 0 0 0 3px rgba(67, 56, 202, 0.2);
}

.naemt-bb-price {
    margin-bottom: 20px;
    padding: 12px 16px;
    border-radius: 12px;
    background: #eef2ff;
    color: #312e81;
    font-size: 14px;
    line-height: 1.5;
}

.naemt-bb-submit {
    margin-top: 20px;
    text-align: center;
}

.naemt-bb-submit button {
    background: linear-gradient(135deg, #4338ca, #6366f1);
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.naemt-bb-submit button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(79, 70, 229, 0.2);
}

.naemt-bb-inline-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
}

.naemt-bb-inline-message.is-error {
    background: #fef2f2;
    color: #b91c1c;
}

.naemt-bb-inline-message.is-success {
    background: #ecfdf5;
    color: #047857;
}

.naemt-bb-success-extra {
    margin-top: 16px;
    font-size: 15px;
    color: #0f172a;
}

.naemt-bb-success-extra p {
    margin: 0 0 12px;
}

.naemt-bb-success-summary {
    margin-top: 24px;
    padding: 16px 20px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.naemt-bb-success-summary h3 {
    margin: 0 0 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
}

.naemt-bb-success-summary dl {
    margin: 0;
    display: grid;
    grid-template-columns: minmax(0, 160px) 1fr;
    gap: 8px 12px;
    font-size: 1rem;
    line-height: 1.4;
}

.naemt-bb-success-summary dt {
    font-weight: 600;
    color: #1f2937;
    font-size: 1rem;
    line-height: 1.4;
}

.naemt-bb-success-summary dd {
    margin: 0;
    color: #1f2937;
    word-break: break-word;
    font-size: 1rem;
    line-height: 1.4;
}

.naemt-bb-loading {
    font-size: 16px;
    color: #6b7280;
    text-align: center;
}

.naemt-bb-advanced-guests {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.naemt-bb-advanced-guests-flow .naemt-bb-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: auto;
}

.naemt-bb-advanced-guests-flow .naemt-bb-choice {
    flex: 0 0 90px;
    justify-content: center;
}

.naemt-bb-price--loading {
    opacity: 0.7;
    font-style: italic;
}

.naemt-bb-simple-guests {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.naemt-bb-guest-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.naemt-bb-guest-field label {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.naemt-bb-guest-field input[type="number"] {
    border: 1px solid #d4d7dc;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 15px;
    color: #111827;
    background: #fff;
}

.naemt-bb-button {
    align-self: flex-start;
    background-color: #0a5fba;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 18px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.naemt-bb-button:hover:not([disabled]) {
    background-color: #084d95;
}

.naemt-bb-button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.naemt-bb-guest-summary {
    display: none;
}

.naemt-bb-notice {
    display: none;
}

@media (max-width: 480px) {
    .naemt-bb-form {
        grid-template-columns: 1fr;
    }

    .naemt-bb-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .naemt-bb-success-summary dl {
        grid-template-columns: 1fr;
    }
}
