
  body {
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    margin: 0;
    padding: 0;
    background-size: 100% 100%;
    /* color: #fff; */
  }

  .survey-container {
    width: 60%;
    margin: auto;
    padding: 20px 20px 1px 20px;
    /* background-color: #f4f4f4; */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
    box-sizing: border-box;
  }
  
  .custom-font {
    font-size: 14px;
    color: #2fc7c8;
    padding-bottom: 20;
  }

  .custom-font3 {
    font-size: 14px;
    color: #2fc7c8;
  }

  p {
    color: #3498db;
  }

  label {
    /* display: block; */
    display: flex;
    /* align-items: center;  */
    margin-bottom: 10px; 
    /* font-weight: bold;  */
    color: #555;
    /* height: 65px; */
    cursor: pointer;
  }

  .label2 {
    /* display: block; */
    display: flex;
    align-items: center; /* Align input and text vertically */
    /* margin-bottom: 10px; */
    /* font-weight: bold;  */
    color: #555;
    font-size: 13px;
    height: 20px;
    cursor: pointer;
  }

  .label3 {
    /* display: block; */
    display: flex;
    align-items: center; /* Align input and text vertically */
    /* margin-bottom: 10px; */
    /* font-weight: bold;  */
    color: #555;
    height: 20px;
    cursor: pointer;
  }
  

  input {
    /* padding: 12px; */
    /* margin-top: 20px; */
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
  }
  

  h2 {
    color: #3498db;
    font-size: 15px
  }

  .custom-font2 {
    color: #3498db;
    font-size: 15px;
    font-weight: bold; /* Adding bold style */
    padding-bottom: 12px; /* Adjust the value as needed for the desired padding */
  }

  .custom-font4 {
    color: #FF0000;
    font-size: 15px;
    font-weight: bold; /* Adding bold style */
    padding-bottom: 12px; /* Adjust the value as needed for the desired padding */
  }
  

  .btn-container {
    display: flex;
    margin-top: 20px;
  }
  
  .btn {
    padding: 5px 10px;
    width: 90px;
    font-size: 15px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .btn.back {
    background-color: #95a5a6;
    color: #fff;
  }
  
  .btn.next {
    background-color: #3498db;
    color: #fff;
    margin-left: auto; /* Push .btn.next to the right */
  }
  
  .btn.start {
    background-color: #3498db;
    color: #fff;
    margin-left: auto; /* Push .btn.next to the right */
  }
  
  .btn.submit {
    background-color: #27ae60;
    color: #fff;
    margin-left: auto; /* Push .btn.next to the right */
  }

    .btn:hover {
      opacity: 0.8;
  }
    
    
  /* .country-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  } */
  
  .column {
    flex: 1;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items at the start of each column */
  }
  
    /* Ensure the last column is always displayed at the end */
  .column:last-child {
    order: 9999;
  }


  .question-container {
    /* background-color: #f9f9f9; */
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  }

  .visible {
    display: block;
    padding: 20px 20px 10px 20px;
    border-radius: 10px;
    background-color: #fff;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: scale(1);
    opacity: 1;
  }

  .hidden {
    display: none;
  }


  input[type="text" i]  {
    width: 100%;
    padding: 0px 10px;
    height: 35px;
    box-sizing: border-box;
    /* border: 2px solid #3498db; */
    border-radius: 6px;
    margin-top: 8px;
    font-size: 13px;
    color: #555;
    transition: border-color 0.3s ease-in-out;
  }

  /* Add a hover effect for better interactivity */
  input[type="text" i]:hover {
    border-color: #3498db;
  }

  /* Add focus styles for better usability */
  input[type="text" i]:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
  }

  input[type="number" i]  {
    width: 50px;
    padding: 2px;
    box-sizing: border-box;
    /* border: 2px solid #3498db; */
    border-radius: 6px;
    margin-top: 8px;
    font-size: 13px;
    color: #555;
    transition: border-color 0.3s ease-in-out;
  }

  /* Add a hover effect for better interactivity */
  input[type="number" i]:hover {
    border-color: #3498db;
  }

  /* Add focus styles for better usability */
  input[type="number" i]:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
  }

  
  table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px; /* Add margin for better spacing */
  }

  th, td {
    border: 1px solid #00000063; /* Change border color to match header */
    text-align: center;
    padding: 10px;
    color: #3498db;
    font-weight: bold;
    font-size: 13px;
  }

  th {
    background-color: #3498db;
    color: #ffffff;
    font-weight: bold;
    font-size: 15px;
  }

  .table-title {
    background-color: #3498db;
    color: #ffffff;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    padding: 15px;
    margin-bottom: 10px; /* Add margin for better spacing */
  }

  .row-header {
    /* background-color: #3498db; */
    color: #3498db;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
  }

  .mb-3 {
    margin-bottom: 1rem !important;
  }

  .form-control-2 {
    vertical-align: middle;
    -ms-transform: scale(1.5); /* IE */
    -moz-transform: scale(1.5); /* FF */
    -webkit-transform: scale(1.5); /* Safari and Chrome */
    -o-transform: scale(1.5); /* Opera */
    transform: scale(1.5);
    margin: 0px 5px;
    cursor: pointer;
}


/* .select2 {
  width:150% !important;
} */

@media screen and (min-width: 350px) {
  .select2 {
    width: 150px !important;
  }
}

@media screen and (min-width: 700px) {
  .select2 {
    width: 350px !important;
  }
}

@media screen and (min-width: 1000px) {
  .select2 {
    width: 500px !important;
  }
}

@media screen and (min-width: 1200px) {
  .select2 {
    width: 650px !important;
  }
}

@media screen and (min-width: 1900px) {
  .select2 {
    width: 1015px !important;
  }
}

.select2-container--default .select2-selection__arrow {
  display: none;
}


.select2-selection--single {
  display: block;
  width: 100% ;
  padding: 0.2rem 0.2rem;
  font-size: 13px;
  font-weight: 400;
  cursor: text !important;
  line-height: 1.4rem;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #d2d6da !important;
  appearance: none;
  border-radius: 0.5rem;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
  height:35px !important;
  border-radius: 0.5rem !important;
  border-top-right-radius: 0.5rem !important;
  border-bottom-right-radius: 0.5rem !important;
  border-left-width: 1px !important;
}


.select2-selection--multiple {
  display: block;
  width: 100% ;
  /* padding: 0.4rem 0.2rem; */
  font-size: 13px;
  cursor: text !important;
  font-weight: 400;
  line-height: 1.4rem;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #d2d6da !important;
  appearance: none;
  border-radius: 0.5rem;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
  height:35px !important;
  border-radius: 0.5rem !important;
  border-top-right-radius: 0.5rem !important;
  border-bottom-right-radius: 0.5rem !important;
  border-left-width: 1px !important;
}

.select2-selection--multiple .select2-selection__choice {
  margin-top: 3px;
}

.select2-selection__choice__remove {
  top: 3 !important;
}

.radio-text {
  margin-top: 4px;
  font-size: 13px;
}

.checkbox-text {
  margin-top: 2px;
  font-size: 13px;
}

input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
  text-align: center; /* Center-align the text within the input */
}

/* For older versions of Chrome and Safari */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

div:where(.swal2-container) h2:where(.swal2-title) {
  font-size: 15px !important;
}

div:where(.swal2-container) .swal2-html-container {
  font-size: 13px !important;
}

div:where(.swal2-container).swal2-center>.swal2-popup {
  width: 35%;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
  background-color: #3498db !important;
  font-size: 15px !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-cancel {
  font-size: 15px !important;
}