.sa-74061d81-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-family: inherit;
}

.sa-74061d81-item {
    border-radius: 0px;
    overflow: hidden;
    background: #fff;
}

.sa-74061d81-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: #ffffff;
    /* Fixed border rendering issue by moving it from child to item or ensuring consistent box-sizing */
    border: 1px solid #eaeaea; 
    border-radius: 0px;
    box-sizing: border-box;
}

.sa-74061d81-item.active .sa-74061d81-header,
.sa-74061d81-header:hover,
.sa-74061d81-item.active .sa-74061d81-header:hover {
    border-radius: 0px !important;
}

.sa-74061d81-header-left,
.sa-74061d81-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sa-74061d81-badge {
    background: rgba(0,0,0,0.05);
    padding: 5px 10px;
    border-radius: 0px;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.sa-74061d81-title {
    margin: 0;
    font-size: 1.1em;
    font-weight: 700;
}

.sa-74061d81-params {
    font-size: 0.9em;
    opacity: 0.9;
}

.sa-74061d81-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(0,0,0,0.05);
    border-radius: 0px;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.sa-74061d81-icon-wrap i   { font-size: 14px; }
.sa-74061d81-icon-wrap svg { width: 14px; height: 14px; }

.sa-74061d81-content {
    padding: 20px;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-top: none;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    box-sizing: border-box;
}

.sa-74061d81-desc {
    margin-bottom: 20px;
    line-height: 1.6;
}

.sa-74061d81-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #eaeaea;
    border-radius: 0px;
    overflow: hidden;
}

.sa-74061d81-table th,
.sa-74061d81-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eaeaea;
}

.sa-74061d81-table tr:last-child th,
.sa-74061d81-table tr:last-child td { border-bottom: none; }

.sa-74061d81-table th {
    font-weight: 600;
    width: 40%;
    background-color: transparent;
}

.sa-74061d81-table tr:nth-child(even) { background-color: #f9f9f9; }
