body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color:#C1F2B0;
  }
  
  .feedback-form-container {
    width: 100%;
    max-width: 800px;
    margin: auto;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    background-color: #fffbfb;
    border-radius: 8px;
    margin-top: 50px;
  }
  
  .footer {
    margin-top: auto;
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
  }
  
  /* Add styles for your form elements below */
  input[type="text"], select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  
  input[type="radio"] + span.emoji {
    font-size: 24px; /* Adjust emoji size */
    cursor: pointer;
  }
  
  .rating-section label {
    display: block;
    margin-bottom: 5px;
  }
  
  .submit-section button {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .submit-section button:hover {
    background-color: #45a049;
  }
  .feedback-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.feedback-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.emoji-ratings {
    margin-top: 30px;
}

.emoji-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
}

.emoji-rating {
    flex: 1; /* Equal width for each emoji rating */
    text-align: center; /* Center the content */
}

.emoji-rating input[type="radio"] {
    display: none;
}

.emoji-rating label {
    cursor: pointer;
    font-size: 12px; /* Adjust the size of your emojis */
    display: inline-block;
}

.emoji-rating label:hover {
    transform: scale(1.2);
}

.emoji-rating input[type="radio"]:checked + label {
    text-decoration: underline; /* Underline the selected emoji */
    text-decoration-color: #4CAF50; /* Color of the underline */
    text-decoration-thickness: 2px; /* Thickness of the underline */
    text-underline-offset: 5px; /* Distance of the underline from the text */
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

button:hover {
    opacity: 0.8;
}
.custom-paragraph {
    font-size: 16px; /* Adjust the font size as needed */
}

.custom-heading {
    font-size: 20px; /* Adjust the font size as needed */
}
.emoji-rating input[type="radio"] {
    display: none; /* Hide the default radio button */
}

.emoji-rating label {
    font-size: 18px; /* Set font size for emojis */
    cursor: pointer; /* Change cursor to pointer when hovering over the label */
}

.emoji-rating input[type="radio"]:checked + label {
    text-decoration: underline; /* Underline the label when selected */
    text-decoration-color: #4CAF50; /* Color of the underline */
    text-decoration-thickness: 2px; /* Thickness of the underline */
}
.emoji-ratings {
    display: flex;
    flex-direction: column;
}

.emoji-row {
    display: flex;
    justify-content: flex-start;
}

.emoji-rating {
    margin-right: 19px; /* Adjust spacing between emojis as needed */
}

/* Add this to ensure the labels don't wrap and they stay aligned */
.emoji-rating label {
    white-space: nowrap;
}
.feedback-reason-container {
    margin-top: 10px; /* Adjust as needed */
}

/* Style for the label of the poor feedback input */
.poor-feedback-label {
    display: block; /* Makes the label take up the full width */
    margin-bottom: 5px; /* Space between the label and the input */
}

/* Style for the poor feedback input */
.poor-feedback-input {
    width: 100%; /* Full width */
    padding: .375rem .75rem; /* Bootstrap's default padding for form-control */
    border: 1px solid #ced4da; /* Bootstrap's default border for form-control */
    border-radius: .25rem; /* Bootstrap's default border-radius for form-control */
}
.logo-image {
    max-width: 400px; /* Adjust this value to fit the size you want */
    height: auto;
    display: block; /* This ensures it centers in the div */
    margin: 0 auto; /* This centers the image horizontally */
}
.radio-group {
    display: flex;
    justify-content: center; /* Center radio buttons horizontally */
    margin-bottom: 10px; /* Space below the radio group */
}

/* Style for radio input and associated label */
.radio-group input[type="radio"] {
    margin-right: 5px; /* Space between radio input and label */
}

.radio-group label {
    cursor: pointer; /* Indicates the label is clickable */
    margin-right: 20px; /* Space between label and the next radio button */
}

/* Style for container of additional text area */
.feedback-reason-container {
    display: none; /* Initially hidden */
    margin-top: 10px; /* Space above the text area */
}

/* Style for the text area */
.feedback-reason-container textarea {
    width: 100%; /* Full width of the container */
    padding: 10px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid #ccc;
    resize: vertical; /* Allow vertical resizing */
}

/* Style for the question container */
.question-container {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center-align items */
    margin-bottom: 20px; /* Space below each question */
}

/* Label for the question */
.question-label {
    margin-bottom: 5px; /* Space below the question label */
}

/* Container for the radio options */
.radio-options {
    display: flex;
    justify-content: space-between; /* Space out radio options equally */
    width: 100%; /* Full width of the container */
}
  
  /* Style for container of additional text area */
  .feedback-reason-container {
    margin-top: 10px;
  }
  
  /* Style for the text area */
  .feedback-reason-container textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid #ccc;
    resize: vertical;
  }
  .question-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  /* Label for the question */
  .question-label {
    margin-bottom: 5px;
  }
 
  .container {
    
    margin: 2rem auto;
    overflow-x: auto; /* Ensure table is scrollable on small screens */
  }
  
  .table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.9em;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  }
  
  .table thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
  }
  
  .table th,
  .table td {
    padding: 12px 15px;
  }
  
  .table tbody tr {
    border-bottom: 1px solid #dddddd;
  }
  
  .table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
  }
  
  .table tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
  }
  
  .table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
  }
  
  /* Responsive Table */
  @media screen and (max-width: 768px) {
    .table thead {
      display: none;
    }
  
    .table, 
    .table tbody, 
    .table tr, 
    .table td {
      display: block;
      width: 100%;
    }
  
    .table tr {
      margin-bottom: 15px;
    }
  
    .table td {
      text-align: right;
      padding-left: 50%;
      text-align: right;
      position: relative;
    }
  
    .table td::before {
      content: attr(data-label);
      position: absolute;
      left: 0;
      width: 50%;
      padding-left: 15px;
      font-weight: bold;
      text-align: left;
    }
  }
  .container.feedback-form-container {
    max-width: 800px; /* Adjust as needed */
    margin: 0 auto; /* Center the container */
    padding: 15px; /* Add some padding */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Optional: adds a subtle shadow */
    background: #fff; /* Background color for the container */
}

/* Adjust the logo size to be responsive */
.logo-image {
    max-width: 100%; /* Make sure the logo is not wider than the container */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 20px; /* Space below the logo */
}

/* Add a media query for smaller screens */
@media (max-width: 768px) {
    .container.feedback-form-container {
        padding: 10px; /* Reduce padding on smaller screens */
    }

    /* You can further adjust the logo size on very small screens if necessary */
    .logo-image {
        max-width: 80%; /* Optionally reduce the logo width on small screens */
        margin-bottom: 15px; /* Adjust space below the logo */
    }
}