:root {
    --mk-bg-tertiary: #F8F9FA;
    --mk-txt-primary: #EC2424;
    --mk-bg-secondary: #EC2424;
  }
  
  .mk-bg-primary{
  background-color: #D9D9D6;
  }
  .mk-bg-secondary{
      background-color: #EC2424;
  }
  .mk-bg-tertiary{
      background-color: #F8F9FA;
  }
  .mk-txt-promary{
      color: #EC2424;
  } 
 
 .desk-store{
    display: none;
 }
 /* .btn-primary:hover{
    color: #fff;
    background-color: #EC2424;
 } */

 .select2.select2-container{
    width: 100% !important;
 }

 .btn-secondary{
    width: 100%;
    background-color: blue;
    padding: 10px 20px;
    
 }
 .btn-secondary.disabled{
    color: #fff !important;
    background-color: #1455B3 !important;
    border-color: #1455B3 !important;
}

 .btn-primary:hover {
    color: #fff;
    background-color: #EC2424;
    border-color: #EC2424;
}
 /* Style the select2 dropdown */
 .select2-container .select2-selection--single {
    background-color: transparent;
    border-radius: 8px;
    padding: 20px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    color: #333;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

/* Adjust placeholder text alignment */
.select2-selection__rendered {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Style the placeholder text */
.select2-selection__placeholder {
    color: #aaa;
    font-style: italic;
    text-align: center;
}

/* Style the dropdown when it's focused */
.select2-container .select2-selection--single:focus {
    border-color: var(--mk-txt-primary);
    box-shadow: 0 0 5px rgba(var(--mk-bg-secondary));
}

/* Change color of options when hovered */
.select2-results__option {
    padding: 10px 15px;
    color: #333;
}

/* Hover effect on option */
.select2-results__option:hover {
    background-color: var(--mk-bg-secondary);
    color: white;
    cursor: pointer;
}

/* Button Styles */
#next-btn {
    background-color: var(--mk-bg-secondary);
    border: none;
    color: white;
    padding: 8px 20px;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Button hover effect */
/* #next-btn:hover {
    background-color: #00b894;
    transform: translateY(-2px);
} */

/* Disabled button state */
#next-btn:disabled {
    background-color: #d6d6d6;
    cursor: not-allowed;
}


body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f8f9fa;
    margin: 0;
}

.btn-primary {
    background-color: var(--mk-bg-secondary);
    border: none;
    font-size: 1rem;
    font-weight: bold;
    padding: 10px 20px;
    width: 100%;
}

/* .btn-primary:hover {
    background-color: #006f5e;
} */

.summary-container {
    width: 90%;
    max-width: 600px;
    min-height: 500px;
    display: flex;
    background-color: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* .left-panel {
    display: none !important;
    background-color: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30%;
} */

.left-panel {
    display: none;
}

.left-panel h4 {
    margin-bottom: 20px;
}

.calendar-buttons .btn {
    width: 100%;
    margin-bottom: 10px;
}

.right-panel {
    padding: 50px 30px;
    flex-grow: 1;
    text-align: center;
}

.problem{
    padding-left: 50px;
    text-align: left; 
}

.right-panel h2 {
    font-size: 1.8rem;
    color: var(--mk-txt-primary);
    text-align: center;
    margin-bottom: 40px;
}

.right-panel .appointment_logo{
    max-width: 250px;
    margin-bottom: 30px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.alert {
    margin-bottom: 20px;
}

.form-group label {
    margin-right: 30px;
    /* Increase space between label and dropdown */
}

.form-select {
    padding-left: 10px;
    /* Optional: Add padding inside the dropdown box */
}


@media screen and (max-width: 768px) {
    .right-panel {
        padding: 60px 30px;
    }
    .right-panel h2 {
        margin-bottom: 30px;
        font-size: 1.6rem;
    }
    .summary-container {
        min-height: 400px;
    }
}