
@media (min-width: 1024px) {
  .main-layout {
    display: flex;
    gap: 20px;
    padding: 20px;
    text-align: left;
  }

  .announcements-panel {
    flex: 1;
    max-width: 400px;
  }

  .evaluation-table-panel {
    flex: 2;
    overflow: hidden;
  }

  .table-wrapper {
    border: 1px solid #ccc;
    width: 100%;
    overflow-x: auto;
  }
  

  .evaluation-table {
    border-collapse: collapse;
    /*width: 100%;*/
    min-width: 600px;
    width: max-content; /* allows horizontal scroll */
  }

  .evaluation-table th,
  .evaluation-table td {
    border: 1px solid #ccc;
    padding: 12px;
    text-align: center;
    min-width: 100px;
    background: white;
    
    white-space: nowrap;
    padding: 10px;
  }

  .evaluation-table thead th {
    position: sticky;
    top: 0;
    background: #149ddb;
    color: white;
    z-index: 2;
  }

  .evaluation-table th:first-child {
    position: sticky;
    left: 0;
    background: #e0e0e0;
    font-weight: bold;
    z-index: 1;
    min-width: 200px; /* Project title column */
    text-align: right;
  }

  .evaluation-table thead th:first-child {
    z-index: 3;
    background: #149ddb;
  }
  
  .evaluation-table th {
    min-width: 120px;
  }
}

@media (max-width: 600px) {
  .evaluation-table th,
  .evaluation-table td {
    font-size: 14px;
    padding: 6px;
  }

  .comment-card {
    display: none; /* or reposition to bottom */
  }
}
