  #garantiesTable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  }

  #garantiesTable th,
  #garantiesTable td {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 8px;
    text-align: left;
  }

  #garantiesTable th {
    background-color: #f8f8f8;
    border-top: 1px solid #ddd;
  }

  #garantiesTable tr:first-child th:first-child {
    border-top-left-radius: 10px;
  }

  #garantiesTable tr:first-child th:last-child {
    border-top-right-radius: 10px;
  }

  #garantiesTable tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
  }

  #garantiesTable tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
  }

  #garantiesTable thead th {
    position: sticky;
    top: 0;
    z-index: 10;
  }

  #garantiesTable tbody tr:nth-child(even) {
    background-color: #f2f2f2;
  }

  #garantiesTable tbody tr:hover {
    background-color: #e8e8e8;
  }