.crm-widgets-container {
    display: flex;
    width: 100%;
    height: 100vh; /* Full height */
}

/* Style the left sidebar */
.crm-left-sidebar {
    width: 250px; /* Fixed width for the sidebar */
    background-color: #f4f4f4;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.crm-tabs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.crm-tabs li {
    margin-bottom: 15px;
}

.crm-tabs a {
    display: block;
    padding: 10px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.crm-tabs a:hover,
.crm-tabs a.active {
    background-color: #0073e6;
    color: #fff;
}

/* Style the right content area */
.crm-right-content {
    flex-grow: 1; /* Take up the remaining space */
    padding: 20px;
    background-color: #fff;
    overflow-y: auto; /* Enable scrolling if content overflows */
}

/* Style for active widget content */
.prf-widget-manager {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fafafa;
}

/* Ensure tabs are stacked vertically */
.crm-left-sidebar ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Optional: Adding a hover effect for the list items */
.crm-tabs li:hover {
    background-color: #f1f1f1;
}

.account-balance {
    display: none;
}