.container-tab {
    background: linear-gradient(45deg, #49a09d, #5f2c82);
    font-family: sans-serif;
    font-weight: 100;
    position: relative;
    margin-top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

table {
    width: 900px;
    border-collapse: collapse;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

th, td{
    padding: 15px;
    background-color: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 1.8em;
}

th {
    text-align: left;
}

thead th {
    background-color: #55608f;
}

tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

tbody td {
    position: relative;
}
td a {
    font-size: 1.0em; /* Adjust the font size as needed */
    color: #fff;
  }
tbody td:hover:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -9999px;
    bottom: -9999px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: -1;
}

@media (max-width: 767px) {
    .container-tab {
        background: linear-gradient(30deg, #49a09d, #5f2c82);
        top: 60px;
        width: 100%;
        margin-top: 0;
        min-width: 0;
    }

    table {
        width: 100%;
    }

    th, td {
        font-size: 1.1rem;
        padding: 10px; /* Smaller padding for a compact look */
    }
}
