  /* Στυλ πίνακα */
  .custom-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    box-shadow: 0 4px 8px rgba(140, 17, 23, 0.15);
    border-radius: 8px;
    overflow: hidden;
  }

  /* Κεφαλίδες πίνακα */
  .custom-table th {
    background-color: #8C1117;
    color: white;
    font-weight: 600;
    text-align: left;
    padding: 15px 20px;
    border-bottom: 3px solid #6a0d12;
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  /* Κελιά δεδομένων */
  .custom-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #f0d6d8;
    vertical-align: top;
    color: #333;
    font-size: 15px;
  }

  /* Πρώτη στήλη (ετικέτες) - αυτόματο πλάτος */
  .custom-table th:first-child,
  .custom-table td:first-child {
    width: max-content; /* Ή auto */
    white-space: nowrap; /* Αποτρέπει το σπάσιμο του κειμένου */
    min-width: 400px; /* Ελάχιστο πλάτος για εμφάνιση */
  }

  /* Δεύτερη στήλη (τιμές) - παίρνει τον υπόλοιπο χώρο */
  .custom-table td:last-child {
    width: 100%;
  }

  /* Προσαρμογή για περιπτώσεις με πολύ μακρές ετικέτες */
  .custom-table th:first-child {
    max-width: 300px; /* Μέγιστο πλάτος για ετικέτες */
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Εναλλασσόμενες γραμμές */
  .custom-table tr.odd {
    background-color: #fdf5f5;
  }

  .custom-table tr.even {
    background-color: #ffffff;
  }

  /* Hover εφέ */
  .custom-table tr:hover {
    background-color: #f8e8e9;
    transition: background-color 0.3s ease;
  }

  /* Πρώτη στήλη (κεφαλίδες) */
  .custom-table th:first-child {
    border-top-left-radius: 8px;
  }

  .custom-table th:last-child {
    border-top-right-radius: 8px;
  }

  /* Τελευταία γραμμή χωρίς κάτω πλαίσιο */
  .custom-table tr:last-child td {
    border-bottom: none;
  }

  /* Responsive design */
  @media screen and (max-width: 600px) {
    .custom-table {
      display: block;
      overflow-x: auto;
      white-space: nowrap;
      font-size: 14px;
    }
    
    .custom-table th, 
    .custom-table td {
      padding: 12px 15px;
      font-size: 14px;
    }
    
    .custom-table th {
      font-size: 15px;
    }
    
    /* Προσαρμογή για κινητά */
    .custom-table th:first-child,
    .custom-table td:first-child {
      width: auto;
      min-width: 150px;
      max-width: 200px;
    }
  }

  /* Προσθήκη εικονιδίων (προαιρετικά) */
  .custom-table th::before {
    content: "▸";
    color: #f8d0d3;
    margin-right: 8px;
    font-weight: bold;
  }