/* feedback_list.css */

/* Reset and base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    color: #333;
    background-color: #f8f9fa;
  }
  
  /* Main container */
  .container {
    max-width: 900px;
    padding: 0 1.5rem;
  }
  
  /* Typography */
  h1 {
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 600;
    font-size: 2rem;
  }
  
  /* Custom button styles */
  .btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
  }
  
  .btn-primary {
    background-color: #4a6bdf;
    color: white;
    border: 1px solid #4a6bdf;
  }
  
  .btn-primary:hover {
    background-color: #3a5bce;
    border-color: #3a5bce;
  }
  
  /* Alert messages */
  .alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
  }
  
  .alert-info {
    background-color: #e6f2ff;
    border-color: #b8daff;
    color: #0c4377;
  }
  
  .alert-success {
    background-color: #e6ffee;
    border-color: #b8ffda;
    color: #0c7743;
  }
  
  .alert-warning {
    background-color: #fffae6;
    border-color: #ffe8b8;
    color: #806000;
  }
  
  .alert-danger {
    background-color: #ffe6e6;
    border-color: #ffb8b8;
    color: #770c0c;
  }
  
  /* Margin utilities */
  .mt-2 {
    margin-top: 0.5rem;
  }
  
  .mt-3 {
    margin-top: 1rem;
  }
  
  .mb-3 {
    margin-bottom: 1rem;
  }
  
  /* Feedback items */
  .border {
    border: 1px solid #e0e0e0;
    border-radius: 0.25rem;
  }
  
  .p-3 {
    padding: 1rem;
  }
  
  .border-warning {
    border-color: #ffcc00;
    background-color: #EFDCAB;
  }
  
  /* Text utilities */
  .text-muted {
    color: #6e6e6e;
    font-size: 0.875rem;
  }
  
  /* Badge styling */
  .badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    margin-left: 0.5rem;
  }
  
  .bg-warning {
    background-color: #ffcc00;
  }

  .bg-approved {
    background-color: #C6F4D6; /* or any other light green color */
}
  
  .text-dark {
    color: #333;
  }
  
  /* Pagination */
  .pagination {
    display: flex;
    list-style: none;
    margin-top: 1.5rem;
    justify-content: center;
  }
  
  .page-item {
    margin: 0 0.2rem;
  }
  
  .page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    line-height: 1.25;
    color: #4a6bdf;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    text-decoration: none;
  }
  
  .page-item:first-child .page-link {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
  
  .page-item:last-child .page-link {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }
  
  /* Active state */
  .page-item.active .page-link {
    color: #fff;
    background-color: #4a6bdf;
    border-color: #4a6bdf;
  }
  
  /* Disabled state */
  .page-item.disabled .page-link {
    color: #a0a0a0;
    pointer-events: none;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #e0e0e0;
  }
  
  /* Feedback author styling */
  strong {
    font-weight: 600;
  }
  
  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .container {
      padding: 0 0.1rem;
      margin: 0.1rem auto;
    }
    
    h1 {
      font-size: 1.75rem;
    }
    
    .pagination {
      flex-wrap: wrap;
    }
    
    .page-item {
      margin-bottom: 0.5rem;
    }
    
    .border {
      padding: 0.75rem;
    }
  }