table {
    width: 100%;
    border-collapse: collapse;
    background: #f3fdff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

th,
td {
    padding: 14px 16px;
    text-align: center;
    border-right: 1px solid #eee;
}

td {
    padding: 14px 16px;
    text-align: center;
    border-right: 1px solid #eee;
}

th {
    /* background: linear-gradient(-90deg, , #1e40af); */
    background-color: #2563eb;
    color: white;
    font-weight: 600;
}

tr:not(:last-child) {
    border-bottom: 1px solid #eee;
}

tr:hover {
    background-color: #d5f6fd;
    cursor: pointer;
}

#add-button {
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 120px;
    height: 50px;
    background-color: #2ba7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 10px;
}

#add-button:hover {
    cursor: pointer;
}