.title-paragraph-bold{
    color: #FF4646; text-align: center;font-size: 20px; font-weight: bold; font-family: ’Fira Sans’, sans-serif;"
}

.red-button {
    background-color: #FF4646;
    color: white;
    border: none;
    width: 100%;
    border-radius: 999px; /* Fully rounded */
    padding: 10px 20px;
    font-size: 1var(--font-14);
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.red-button:disabled {
    background-color: #f0f0f0;
    color: #aaa;
    cursor: not-allowed;
    box-shadow: none;
    border: 1px solid #ccc;
    opacity: 0.7;
}

.red-button:hover {
    background-color: #e64343; /* Slightly darker for hover effect */
}

.red-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 70, 70, 0.4);
}


.white-button {
    display: block;
    background-color: white;
    color: #FF4646;
    border: 2px solid #FF4646;
    width: 100%;
    border-radius: 999px; /* Fully rounded */
    padding: 10px 20px;
    font-size: var(--font-14);
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.2s ease, color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.white-button:disabled {
    background-color: #f9f9f9;
    color: #ccc;
    border: 1px solid #ddd;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.7;
}

.white-button:hover {
    background-color: #ffecec;
    color: #e64343;
}

.white-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 70, 70, 0.3);
}

.session-cost-box {
    background-color: #e9ecef; /* darker grey */
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 1.125rem; /* ~18px */
    font-weight: 600; /* semibold */
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.time-toggle-group {
    display: flex;
    width: 100%;
    gap: 8px;
}

.time-toggle-group input[type="radio"] {
    display: none;
}

.time-toggle-group label {
    width: 100%;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1.5px solid #FF4646;
    color: #FF4646;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    background-color: white;
}

.time-toggle-group input[type="radio"]:checked + label {
    background-color: #FF4646;
    color: white;
}

.form-components label {
    font-weight: 700 !important;
}
.spacing_24{
    background-color: #ffffff;
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}



.confirm-header {
    background-color: #16bb84;
    color: white;
    padding: 24px 16px;
    border-radius: 16px;
    text-align: center;

    /* Only round the top corners */
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.confirm-header h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.confirm-header p {
    font-size: 16px;
    margin-bottom: 0;
}

.session-details {
    font-weight: 700;
    background-color: #F8F9FA;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    line-height: 1.4;
}

.session-details h6 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
}

.session-details .detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.session-details .location-row {
    margin-top: 12px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #444;
}

.session-details .location-row i {
    margin-right: 6px;
}


.receipt-status-box {
    background-color: #ffffff;
    border: 1.5px solid #2A9A4B;
    border-radius: 12px;
    font-size: 14px;
}



.session-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.session-details h6 {
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.detail-item {
    margin-bottom: 8px;
}

.detail-label {
    font-size: 14px;
    color: #687080;
    margin-bottom: 2px;
    font-weight: 500;
}

.detail-value {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.location-row {
    display: flex;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
    margin-top: 8px;
}

.location-row i {
    color: #666;
}

.location-row strong {
    color: #333;
}

.location-row span {
    color: #333;
}

/* Session details container */
.session-details-container {
    background: #FEF2F2;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.session-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    font-size: 16px;
}

.detail-item {
    margin-bottom: 8px;
}

.detail-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 2px;
    /*font-weight: 600;*/
}

.detail-value {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.location-row {
    display: flex;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
    margin-top: 8px;
}

.location-row i {
    color: #666;
}

.location-row strong {
    color: #333;
}

.location-row span {
    color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.guest-container {
    max-width: 500px;
    width: 100%;
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
}

.header {
    padding: 30px 25px 20px;
    text-align: center;
    position: relative;
}

.language-selector {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
}

.globe-icon {
    width: 14px;
    height: 14px;
    margin-right: 4px;
    opacity: 0.6;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.logo-icon {
    width: 35px;
    height: 40px;
    margin-right: 12px;
    position: relative;
}

.pin-shape {
    width: 35px;
    height: 35px;
    background: #ff4646;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pin-inner {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    color: #ff4646;
}

.wifi-rings {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 50px;
    height: 50px;
}

.ring {
    position: absolute;
    border: 2px solid #ff4646;
    border-radius: 50%;
    opacity: 0.3;
}

.ring:nth-child(1) { width: 25px; height: 25px; top: 12px; left: 12px; }
.ring:nth-child(2) { width: 35px; height: 35px; top: 7px; left: 7px; }
.ring:nth-child(3) { width: 45px; height: 45px; top: 2px; left: 2px; }

.brand-name {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    font-style: italic;
}

.subtitle {
    color: #ff4646;
    font-size: 20px;
    font-weight: 600;
    margin-top: 8px;
}

.form-container {
    padding: 0 25px 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #e1e8ed;
    border-radius: 12px !important;
    font-size: 16px;
    color: #2c3e50;
    background: #fafbfc;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #ff4646;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.1);
}

.form-control::placeholder {
    color: #95a5a6;
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.btn-danger {
    background: #ff4646;
    border-color: #ff4646;
    border-radius: 12px;
    font-weight: 600;
    padding: 18px;
    transition: all 0.3s ease;
}

.btn-danger:hover:not(:disabled) {
    background: #e63946;
    border-color: #e63946;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3);
}

.btn-danger:disabled {
    background: #e1e8ed;
    border-color: #e1e8ed;
    color: #95a5a6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.btn-group {
    margin-bottom: 15px;
    gap: 16px; /* Add gap between buttons */
}

.btn-outline-danger {
    background-color: white;
    color: #FF4646;
    border: 2px solid #FF4646;
    border-radius: 999px !important; /* Fully rounded to match red-button */
    font-size: 16px;
    font-weight: 600; /* Match the bold weight */
    padding: 15px 18px; /* Match the padding of form controls */
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-outline-danger:hover {
    background-color: #ffecec;
    color: #e64343;
    border-color: #e64343;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 70, 70, 0.2);
}

.btn-check:checked + .btn-outline-danger {
    background-color: #FF4646 !important;
    border-color: #FF4646 !important;
    color: white !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-check:checked + .btn-outline-danger:hover {
    background-color: #e64343 !important;
    border-color: #e64343 !important;
    color: white !important;
}

.btn-group > .btn-outline-danger:not(:last-child) {
    border-top-right-radius: 999px !important;
    border-bottom-right-radius: 999px !important;
}

.btn-group > .btn-outline-danger:not(:first-child) {
    border-top-left-radius: 999px !important;
    border-bottom-left-radius: 999px !important;
    margin-left: 0 !important;
}

.app-store-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 25px;
    background: #f8f9fa;
}

.store-btn img {
    height: 40px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.store-btn img:hover {
    transform: scale(1.05);
}

.prebooking-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 12px;
    margin: 15px 0;
    color: #856404;
    font-size: 13px;
}

#prebookingMsg {
    display: none;
}

.w-100 {
    width: 100%;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

/* Language Dropdown Styles */
.language-dropdown {
    position: absolute;
    right: 25px;
    top: 25px;
    z-index: 1050;
}

.language-dropdown .dropdown-toggle {
    background: white;
    border: none;
    border-radius: 28px;
    padding: 8px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #374151;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.language-dropdown .dropdown-toggle:hover,
.language-dropdown .dropdown-toggle:focus {
    background: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #374151;
}

.language-dropdown .dropdown-toggle::after {
    display: none;
}

.language-dropdown .globe-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.6;
}

/* Dropdown Menu */
.language-dropdown .dropdown-menu {
    background: white;
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 0;
    margin-top: 8px;
    min-width: 200px;
    overflow: hidden;
}

/* Header */
.language-dropdown-header {
    padding: 16px 20px 12px;
    border-bottom: 1px solid #e5e7eb;
    background: #fafbfc;
}

.language-dropdown-header h2 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    text-align: center;
}

/* Language Options */
.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none;
    color: #374151;
    transition: background-color 0.2s ease;
}

.language-option:hover {
    background-color: #f9fafb;
    color: #374151;
    text-decoration: none;
}

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

.language-option .flag-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
}

.language-option .language-name {
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
}

/* Active language indicator */
.language-option.active {
    background-color: #fef2f2;
}

.language-option.active .language-name {
    color: #dc2626;
    font-weight: 600;
}
/* Cost breakdown styles */
.cost-breakdown {
    font-size: 0.9rem;
    color: #555;
    margin-top: 8px;
}

.cost-line-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.95rem;
}

.cost-line-item.cost-total {
    border-top: 1px solid #d1d5db;
    margin-top: 6px;
    padding-top: 10px;
    color: #333;
}

.cost-line-item strong {
    font-weight: 600;
}

.session-cost-box > div > div:first-child {
    justify-content: center !important;
}
