.content-container {
    padding: 20px;
    background-color: #f9f9f9;
    min-height: 100vh;
  }
  
  h1 {
    color: #1f4e78;
    font-size: 26px;
    margin-bottom: 20px;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  thead {
    background-color: #e8f0fa;
  }
  
  th, td {
    padding: 10px 12px;
    border: 1px solid #ccc;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
  }
  
  td:last-child {
    text-align: center;
  }
  
  .btn-view {
    padding: 6px 12px;
    background-color: #1f4e78;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s ease;
  }
  
  .btn-view:hover {
    background-color: #155f91;
  }
  