
        body{
          color: #2c2c2c
        }
        .table-hover tbody tr:hover {
          background-color: transparent;
        }
        .table > thead > tr > th{
          background: #765511 !important;
          color: #fff
        }
        .table > thead > tr > th{
          line-height: 20px!important;
        }

        .head{
          font-family: "Bebas Neue", serif;
          font-style: normal;
          font-weight: 500;
          text-transform: uppercase;
          color: #765511;
        }

        .logo{
          width: 70px;
          margin-right: 5px;
        }

        .time-btn {
          font-size: 0.75rem;
          padding: 0.35rem 0.5rem;
        }

        .time-btn.booked {
          opacity: 0.6;
          cursor: not-allowed;
        }

        .booking-table-wrapper {
          overflow-x: auto;
          border: 1px solid #dee2e6;
          border-radius: 0.375rem;
        }

        .booking-table {
          min-width: 900px;
        }

        .booking-table th {
          background: #765511 !important;
          color: #fff;
          line-height: 20px !important;
          font-size: 0.85rem;
          width: 75px;
        }

        .week-navigation {
          display: flex;
          justify-content: center;
          gap: 10px;
          margin-bottom: 20px;
          align-items: center;
        }

        .week-navigation button {
          padding: 0.5rem 1rem;
          font-size: 0.9rem;
        }

        .current-week-label {
          min-width: 200px;
          text-align: center;
          font-weight: bold;
          color: #765511;
        }

        .booking-container {
          margin: 0 auto;
          padding: 20px;
          background: #f8f9fa;
          border-radius: 12px;
        }

        .booking-step {
          background: white;
          padding: 30px;
          border-radius: 10px;
          box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .step-header {
          display: flex;
          align-items: center;
          gap: 15px;
          margin-bottom: 25px;
          padding-bottom: 15px;
        }

        .step-icon {
          font-size: 32px;
        }

        .step-header h3 {
          margin: 0;
          color: #333;
          font-size: 20px;
          font-weight: 600;
        }

        .progress-bar {
          height: 8px;
          background: #e9ecef;
          border-radius: 2px;
          margin-bottom: 30px;
          overflow: hidden;
        }

        .progress {
          height: 100%;
          background: #4b3508;
          transition: width 0.3s ease;
        }

        .date-selector h4,
        .time-selector h4 {
          color: #333;
          font-weight: 600;
          margin-bottom: 20px;
          font-size: 16px;
        }

        .calendar-navigation {
          display: flex;
          align-items: center;
          justify-content: space-between;
          margin-bottom: 25px;
          gap: 15px;
        }

        .month-range {
          font-size: 16px;
          font-weight: 600;
          color: #4b3508;
          min-width: 200px;
          text-align: center;
        }

        .calendar-navigation button {
          width: 36px;
          height: 36px;
          padding: 0;
          display: flex;
          align-items: center;
          justify-content: center;
          font-weight: bold;
        }

        .calendar-table {
          width: 100%;
          border-collapse: collapse;
        }

        .calendar-table th {
          text-align: center;
          padding: 8px 4px;
          font-weight: 600;
          color: #666;
          font-size: 13px;
          border: none;
        }

        .calendar-table td {
          text-align: center;
          padding: 4px;
          border: none;
          height: 70px;
          vertical-align: middle;
        }

        .date-cell {
          width: 100%;
          height: 100%;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          border: 2px solid #d5d5d5;
          border-radius: 8px;
          transition: all 0.2s ease;
          background: white;
          position: relative;
          min-height: 60px;
        }

        .date-cell:hover {
          border-color: #4b3508;
          background: #f5f5f5;
          border: 2px solid #4b3508;
        }

        .date-cell.selected {
          border-color: #7d5b18;
          background: #7d5b18;
          color: white;
        }

        .date-cell.selected .date-number,
        .date-cell.selected .date-month,
        .date-cell.selected .date-dayname {
          color: white;
        }

        .date-cell.disabled {
          opacity: 0.4;
          cursor: not-allowed;
          background: #f5f5f5;
        }

        .date-cell.disabled:hover {
          border-color: #e9ecef;
          background: #f5f5f5;
        }

        .date-dayname {
          font-size: 12px;
          font-weight: 600;
          color: #666;
        }

        .date-number {
          font-size: 20px;
          font-weight: 700;
          color: #333;
        }

        .date-month {
          font-size: 11px;
          color: #999;
        }

        .time-slots {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 12px;
        }

        .time-slot-btn {
          padding: 15px 10px;
          border: 2px solid #e9ecef;
          border-radius: 8px;
          background: white;
          cursor: pointer;
          transition: all 0.2s ease;
          font-weight: 600;
          color: #333;
        }

        .time-slot-btn:hover {
          background: #f5f5f5;
          border: 2px solid #4b3508;
        }


        .time-slot-btn.selected {
          border-color: #7d5b18;
          background: #4b3508;
          color: white;
        }

        .time-slot-btn.disabled {
          opacity: 0.5;
          cursor: not-allowed;
          background: #f5f5f5;
        }

        #proceedToTimeBtn:disabled,
        #proceedToFormBtn:disabled,
        #confirmBookingBtn:disabled {
          opacity: 0.5;
          cursor: not-allowed;
        }

        .time-period-tabs {
          display: flex;
          gap: 10px;
          margin-bottom: 25px;
        }

        .time-period-btn {
          flex: 1;
          padding: 12px 15px;
          border: 2px solid #e9ecef;
          border-radius: 8px;
          background: white;
          color: #333;
          font-weight: 600;
          cursor: pointer;
          transition: all 0.2s ease;
        }

        .time-period-btn:hover {
          border-color: #4b3508;
          background: #f5f5f5;
        }

        .time-period-btn.active {
          border-color: #735416;
          background: #4b3508;
          color: white;
        }

        .form-label {
          font-weight: 600;
          color: #333;
          margin-bottom: 8px;
        }

        .form-control {
          border: 1px solid #dee2e6;
          border-radius: 6px;
          padding: 10px 12px;
          font-size: 14px;
        }

        .form-control:focus {
          border-color: #4b3508;
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
        }

        .alert-info {
          background-color: #f0f8fa;
          border-color: #4b3508;
          color: #333;
        }

        .alert-success {
          color: #765511;
        }

        #phoneError {
          font-size: 13px;
          margin-top: 4px;
        }

        .text-primary{
          color: #765511 !important;
        }

        .btn-primary{
            background-color: #4b3508;
        }

        /* .btn-outline-primary:not(:disabled):not(.disabled):active, 
        .btn-outline-primary:not(:disabled):not(.disabled).active, 
        .show > .btn-outline-primary.dropdown-toggle {
            color: #fff;
            background-color: #765511;
            border-color: #765511;
        }

        .btn-outline-primary:focus, .btn-outline-primary.focus {
            box-shadow: 0 0 0 0.2rem #765511;
        }

        .btn-primary.disabled, .btn-primary:disabled {
            color: #fff;
            background-color: #765511;
            border-color: #4b3508;
        }

        .btn-outline-primary:hover {
            background-color: #765511;
            border-color: #4b3508;
        }

        .btn-outline-primary {
            color: #4b3508;
            border-color: #4b3508;
        }

        .btn-outline-primary:focus, .btn-outline-primary.focus {
            box-shadow: 0 0 0 0.2rem #765511;
        } */

        /* .date-cell.selected {
            border-color: #4b3508;
            background: #765511;
        }

        .btn-primary {
            background-color: #4b3508;
            border-color: #765511;
        } */

        .btn-outline-secondary {
            color: #4b3508;
            border-color: #765511;
            margin-right: 8px;
        }

        .time-slot-btn.selected {
            color: #fff;
        }

        .map-holder{
            padding: 15px;
        }
        


        @media screen and (max-width: 767px) {
           .booking-container {
              margin: 0;
              padding: 0;
          }
          .date-number{
            font-size: 1rem;
          }

          .step-header {
            margin-bottom: 8px;
            padding-bottom: 5px;
          }
          .calendar-table td {
              height: 45px!important;
          }

          .date-cell {
              min-height: 30px;
          }

          .step-header h3 {
              font-size: 0.8rem;
          }

          .time-period-btn {
            padding: 12px 7px;
            font-size: 0.8rem;
          }

          .time-slot-btn {
              padding: 12px 7px;
              font-size: 0.8rem;
          }

          p {
            font-size: 0.8rem;
            line-height: 1.2rem;
          }

          .booking-step {
              padding: 15px;
          }

          .map-holder {
              padding: 0px;
          }
        }