/* Tab navigation */

.ctw-tab-nav {
    display: flex;
    list-style: none;
    border-bottom: 1px solid #ddd;
    margin: 0 0 20px;
    padding: 0;
}

.ctw-tab-nav li {
    margin-right: 30px;
    padding: 10px 0;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    color: #333;
}

.ctw-tab-nav li.active {
    color: #0056b3;
}

.ctw-tab-nav li.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #0056b3;
}


/* Tab content */

.ctw-tab-pane {
    display: none;
}

.ctw-tab-pane.active {
    display: block;
}


/* Table style */

.ctw-table {
    width: 100%;
    border-collapse: collapse;
    background: #fafafa;
    border-radius: 6px;
    overflow: hidden;
}

.ctw-table tr {
    border-bottom: 1px solid #eaeaea;
}

.ctw-table td {
    padding: 12px 16px;
    font-size: 14px;
    box-shadow: none !important;
    border: none;
}

.ctw-table .ctw-label {
    font-weight: 500;
    color: #444;
    width: 40%;
    text-align: left;
}

.ctw-table .ctw-value {
    text-align: right;
    color: #222;
}