/* Container styling */
.table-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
  }
  
  /* Table styling */
  table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
  }
  
  table th, table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
  }
  
  table th {
    background-color: #f7f7f7;
    font-weight: bold;
  }
  /* Set a minimum width for the Reply column */
table th:nth-child(5), 
table td:nth-child(5) {
    width: 300px;  /* Adjust width as needed */
}

/* Set a minimum width for the Reply column */
table th:nth-child(3), 
table td:nth-child(3) {
    width: 200px;  /* Adjust width as needed */
}

  
  table tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  
  table tr:hover {
    background-color: #f1f1f1;
  }
  
  /* Input field styling */
  input[type="text"] {
    width: 100%;
    padding: 10px; 
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    text-align: left; /* Ensure text aligns to the left */
  }
  
  /* Button styling */
  button {
    padding: 10px 15px;
    margin-right: 5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
  }
  
  button:hover {
    opacity: 0.9;
  }
  
  button:active {
    transform: scale(0.98);
  }

  textarea.box-box {
    width: 90%;           /* Set width relative to the cell */
    height: 100px;        /* Set a default height */
    padding: 10px;        /* Adjust padding for inner spacing */
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    resize: vertical;     /* Allow vertical resizing */
    overflow-wrap: break-word; /* Ensure long words break correctly */
}
  
  /* Accept and Reject buttons */
  .accept-btn {
    background-color: #28a745; /* Accept button */
    color: white;
  }
  
  .reject-btn {
    background-color: #dc3545; /* Reject button */
    color: white;
  }

  .accept-btn {
    background-color: #4CAF50; /* Green */
    color: white;
  }
  
  .reject-btn {
    background-color: #f44336; /* Red */
    color: white;
  }
  
  .accepted-btn {
    background-color: #4CAF50; /* Green */
    color: white;
  }
  
  .rejected-btn {
    background-color: #f44336; /* Red */
    color: white;
  }
  
  
  /* Pagination styling */
  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  
  .pagination button {
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    font-size: 14px;
  }