.tab {
    padding: 1.8125rem 1.875rem;
    transition: all 0.3s;
    background-color: transparent;
    border-radius: 10px;
    position: relative;
    border: 1px solid #ddd;
}

.tab-main {
    max-width: 1410px;
    width: 100%;
    margin: 0 auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tab-main table {
    border-collapse: collapse;
    font-size: 0.9em;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    border-color: #dddddd;
    width: 100%;
    max-width: 100%;
  }
  
.tab-main table tr:first-child {
    background-color: #0f50a5;
    color: #ffffff;
    text-align: left;
    font-weight: bold;
    height: 60px;
  }
  .tab-main table tr:first-child td{
    vertical-align: middle;
  }
  
.tab-main table th,
.tab-main table td {
    padding: 12px 15px;
  }
  
.tab-main table tbody tr {
    border-bottom: 1px solid #dddddd;
  }
  
.tab-main table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
  }
.tab-main table tbody tr:last-of-type {
    border-bottom: 2px solid #dddddd;
  }
  
.tab-main table tbody tr.active-row {
    font-weight: bold;
    color: #0f50a5;
  }

.tab-head {
    --iconColor: #061a3d;
    cursor: pointer;
}

.tab-head .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.8125rem;
    height: 2.8125rem;
    border: 0.125rem solid var(--iconColor);
    border-radius: 50%;
    position: absolute;
    left: 1.4375rem;
    top: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-head .icon::before {
    content: "";
    width: 0.9969rem;
    height: 0.125rem;
    background-color: var(--iconColor);
    position: absolute;
    border-radius: 1.875rem;
    transition: all 0.3s;
}

.tab-head .icon::after {
    content: "";
    width: 0.125rem;
    height: 0.9969rem;
    background-color: var(--iconColor);
    position: absolute;
    border-radius: 1.875rem;
    transition: all 0.3s;
}

.tab-head h2 {
    font-size: 1.3rem;
    line-height: 1.875rem;
    margin: 0;
    color: #061a3d;
    opacity: 0.6;
    transition: all 0.3s;
}

.tab-body {
    color: #061a3d;
    font-size: 1rem;
    line-height: 1rem;
    display: none;
    overflow: auto;
    position: relative;
}

.tab-body p:last-child {
    margin: 0;
}

.tab.active {
    background-color: #fff;
}

.tab.active .tab-head {
    margin-bottom: 1.25rem;
    --iconColor: #1083ff;
}

.tab.active .tab-head .icon {
    border: 0.1875rem solid var(--iconColor);
}

.tab.active .tab-head .icon::before {
    height: 0.1875rem;
}

.tab.active .tab-head .icon:after {
    transform: rotate(90deg);
    width: 0.1875rem;
}

.tab.active .tab-head h2 {
    font-size: 1.875rem;
    opacity: 1;
}