@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto.woff2') format('woff2'),
         url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap; /* Optimize font loading */
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat.woff2') format('woff2'),
         url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: #8B5DFF;
    font-family: 'Roboto', sans-serif;
 }

 .img-fluid{
    max-height: 50px;
 }

 .img-samvaad{
     max-height: 80px;
  }

 .note{
    color: red;
 }

 .delegate_category_box{
   border: 1px solid #ccc !important;
   border-radius: 4px;
   padding-top: 8px;
   padding-bottom: 8px;
   margin-left: 2px;
   margin-right: 2px;
 }

 .form-check-input:checked{
    background-color: #6A42C2;
    border-color: #e3f2fd;
 }

 .feedback-container {
   background-color: #fff;
   padding: 30px;
   margin: 30px auto;
   max-width: 920px;
   border-radius: 8px;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 }

 .form-group {
   margin-bottom: 20px;
 }

 .form-label {
   font-weight: bold;
   color: #333;
   margin-bottom: 8px;
   display: block;
 }

 .radio-group {
   display: flex;
   gap: 15px;
   align-items: center;
 }

 .radio-input {
   display: none;
 }

 .radio-label {
   display: inline-flex;
   align-items: center;
   cursor: pointer;
   border: 1px solid #ccc;
   border-radius: 4px;
   padding: 8px 12px;
   color: #555;
   transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
 }

 .radio-input:checked + .radio-label {
   border-color: #6A42C2;
   background-color: #e3f2fd;
   color: #6A42C2;
   font-weight: bold;
 }

 .form-control {
   border: 1px solid #ccc;
   border-radius: 4px;
   padding: 10px;
   width: 100%;
   box-sizing: border-box;
 }

 .form-control:focus {
    border-color: #6A42C2;  /*007bff*/
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
 }

 .submit-button {
    background-color: #6A42C2;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
 }

 .submit-button:hover {
    background-color: #0056b3;
 }

 .material-icons {
    margin-right: 8px;
    vertical-align: middle;
 }

 /* Responsive adjustments */
 @media (max-width: 576px) {
    .radio-group {
      flex-direction: column; /* Stack options on extra-small screens */
      align-items: flex-start;
    }

    .radio-label {
      width: 100%;
      margin-bottom: 8px;
    }
 }

 .comment-limit-info {
   font-size: 0.8rem;
   color: #777;
   margin-top: 5px;
 }

 .word-count {
   font-size: 0.8rem;
   color: #007bff;
   margin-top: 5px;
   font-weight: bold;
 }

 .word-limit-exceeded {
    color: red;
 }

 .err-text{
    color: #FFF;
 }


 /* Reset slider margins to prevent alignment shifts */
 .custom-slider {
     width: 100%;
     margin: 0;
     cursor: pointer;
 }

 /* Flexbox ensures numbers are spaced equally across the width */
 .slider-numbers {
     display: flex;
     justify-content: space-between;
     /* This padding compensates for the width of the slider "thumb"
        so the 0 and 10 sit exactly under the start and end of the bar */
     padding: 0 10px;
     margin-top: 8px;
 }

 .slider-numbers span {
     font-size: 0.9rem;
     font-weight: 500;
     color: #333;
     width: 20px; /* Keeps the spacing consistent */
     text-align: center;
 }

 .slider-labels {
     display: flex;
     justify-content: space-between;
     margin-top: 5px;
     color: #6c757d;
 }




 /*

         body {
             background: linear-gradient(-45deg, #e73c7e);
             background-size: 400% 400%;
             animation: gradientMove 15s ease infinite;
             min-height: 100vh;
             display: flex;
             align-items: center;
         }

         @keyframes gradientMove {
             0% { background-position: 0% 50%; }
             50% { background-position: 100% 50%; }
             100% { background-position: 0% 50%; }
         }

         .feedback-container {
             background: rgba(255, 255, 255, 0.92);
             backdrop-filter: blur(10px);
             border-radius: 15px;
             padding: 30px;
             box-shadow: 0 10px 30px rgba(0,0,0,0.2);
             margin-top: 50px;
             margin-bottom: 50px;
         }


         .slider-container {
             padding: 20px 0;
         }
         .range-labels {
             display: flex;
             justify-content: space-between;
             padding: 0 10px;
             margin-top: 10px;
             font-weight: bold;
         }

         .slider-container {
             width: 100%;
             max-width: 600px;
             margin: 20px 0;
         }

         */