/* Custom styles for table */
.cpt-table-container {
    overflow-x: auto;
}

.cpt-custom-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    border-radius: 10px;
    overflow: hidden;
}

.cpt-table-header {
    background-color: #4CAF50;
    color: white;
}

.cpt-table-header-cell {
    padding: 12px;
    text-align: left;
}

.cpt-table-cell {
    padding: 12px;
    text-align: left;
    position: relative; 
}

.cpt-profile-image {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-right: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.cpt-name {
    margin-left: 50px; 
    display: inline-block; 
}


.cpt-crypto-settings-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.cpt-crypto-settings-box, .cpt-crypto-preview-box {
    width: 48%;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.cpt-crypto-preview-box {
    background-color: #fff;
}
.cpt-crypto-settings-box form {
    margin-bottom: 0;
}