.tabs {
    width: 100%;
    font-family: Arial, sans-serif;
    text-align: center;
    /* Center align the tab links */
}

.tab-links {
    display: inline-block;
    /* Make the tab links container inline-block */
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 60px
}

.tab-links li {
    display: inline-block;
    margin-right: -4px;
}

.tab-links a {
    padding: 9px 15px;
    display: inline-block;
    border-radius: 3px 3px 0 0;
    background: none;
    font-size: 20px;
    font-weight: 600;
    color: #4C4C4C;
    transition: all 0.2s;
    border-bottom: 3px solid transparent;
}

.tab-links a:hover {
    background: none;
    text-decoration: none;
    color: #0253ee;
    border-bottom: 3px solid #0253ee;
}

li.active a,
li.active a:hover {
    background: none;
    color: #0253ee;
    border-bottom: 3px solid #0253ee;
}

.tab-content {
    border-radius: 20px;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
    background: #fff;
    margin: 0 auto;
    /* Center align the tab content */
    /* width: 50%; */
    /* Set a width for the tab content or use a different value as needed */
    padding: 15px;
}

.tab {
    display: none;
    padding: 15px;
}

.tab.active {
    display: block;
}