.content{
    align-items: center;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
  }

th,
td {
    padding: 12px;
    text-align: left;
  }

th {
    background-color: #FF9702;
    color: white;
    letter-spacing: 1px;
  }

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

tr:hover {
    background-color: #ffe4b5;
  }

td {
    border-bottom: 1px solid #ddd;
  }

a {
    color: #FF9702;
    text-decoration: none;
    font-weight: bold;
  }

a:hover {
    text-decoration: underline;
    color: #e68a00;
  }