.ct-e7ce07ce-container {
    width: 100%;
}

.ct-e7ce07ce-table {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.ct-e7ce07ce-header {
    display: flex;
    width: 100%;
    font-weight: 700;
    border-bottom: 2px solid #333;
    margin-bottom: 10px;
}

.ct-e7ce07ce-header-cell {
    padding: 15px;
}

.ct-e7ce07ce-row {
    display: flex;
    width: 100%;
    background-color: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 8px;
    align-items: center;
    border-bottom: 1px solid transparent; /* for optional border setting */
}

.ct-e7ce07ce-cell {
    padding: 15px;
}

.ct-e7ce07ce-col-left {
    flex: 0 0 30%;
    font-weight: 600;
}

.ct-e7ce07ce-col-right {
    flex: 1;
    color: #b3b3b3;
}

.ct-e7ce07ce-icon-wrapper {
    display: flex;
    align-items: center;
}

.ct-e7ce07ce-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #ffcc00; /* default icon color */
}

.ct-e7ce07ce-icon svg {
    fill: #ffcc00;
}

/* Responsive */
@media (max-width: 767px) {
    .ct-e7ce07ce-header {
        display: none; /* Hide header on mobile */
    }
    
    .ct-e7ce07ce-row {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    .ct-e7ce07ce-cell {
        width: 100%;
        padding: 5px 15px;
    }
    
    .ct-e7ce07ce-col-left {
        margin-bottom: 5px;
    }
}
