.coming-soon_profile {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px; /* Adjust as needed */
    background: #f8f9fa; /* Light gray background */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
  }
  
  .coming-soon_profile p {
    
    color: #333; /* Dark gray text */
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.9;
    transition: opacity 0.3s ease;
  }
  
.profile-container_b3 {
    width: calc(100% - 260px);
    margin-left: 260px;
    min-height: 100vh;
    background-color: #ffffff;
    padding: 30px;
}

.user-brief_b3 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.welcome-text_b3 {
    font-size: 14px;
    color: #666;
}

.user-name_b3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* Tab Navigation */
.tab-container_b3 {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.tabs_b3 {
    display: flex;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eaeaea;
}

.tab-btn_b3 {
    padding: 16px 30px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    outline: none;
}

.tab-btn_b3:hover {
    color: #2d4494;
}

.tab-btn_b3.active_b3 {
    color: #2d4494;
}

.tab-btn_b3.active_b3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff7b00;
}

.tab-content_b3 {
    padding: 30px;
}

.tab-pane_b3 {
    display: none;
}

.tab-pane_b3.active_b3 {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

/* Profile Tab */
.profile-info_b3 {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.profile-picture-container_b3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 170px;
}

.profile-picture_b3 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.profile-picture_b3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-overlay_b3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transform: translateY(40px);
    transition: transform 0.3s ease;
}

.profile-picture_b3:hover .upload-overlay_b3 {
    transform: translateY(0);
}

.upload-btn_b3 {
    background-color: #f8f9fa;
    border: 1px solid #eaeaea;
    color: #666;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-btn_b3:hover {
    background-color: #eaeaea;
    color: #333;
}

.user-details_b3 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.user-info-card_b3, .mining-stats-card_b3 {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
}

.user-info-card_b3 h2, .mining-stats-card_b3 h2 {
    color: #2d4494;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.info-item_b3 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.info-item_b3:last-child {
    border-bottom: none;
}

.info-label_b3 {
    color: #666;
    font-size: 14px;
}

.info-value_b3 {
    color: #333;
    font-weight: 500;
}

.status-active_b3 {
    color: #28a745;
    font-weight: 600;
}

.edit-info-btn_b3 {
    background-color: #ff7b00;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    margin-top: 15px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
}

.edit-info-btn_b3:hover {
    background-color: #e66f00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 123, 0, 0.2);
}

.mining-stats-card_b3 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item_b3 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon_b3 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
}

.workers_b3 {
    background-color: #4361ee;
}

.hash_b3 {
    background-color: #3a0ca3;
}

.uptime_b3 {
    background-color: #4cc9f0;
}

.stat-details_b3 {
    display: flex;
    flex-direction: column;
}

.stat-value_b3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.stat-label_b3 {
    font-size: 14px;
    color: #666;
}

/* Wallet Tab */
.wallet-overview_b3 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.balance-card_b3 {
    background: linear-gradient(135deg, #2d4494, #1e3374);
    color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(29, 45, 92, 0.2);
}

.balance-header_b3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.balance-header_b3 h2 {
    font-size: 20px;
    font-weight: 600;
}

.coin-icon_b3 {
    width: 40px;
    height: 40px;
    background-color: #ff7b00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.balance-amount_b3 {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
}

.balance-value_b3 {
    font-size: 36px;
    font-weight: 700;
}

.currency-code_b3 {
    font-size: 18px;
    opacity: 0.8;
}

.balance-usd_b3 {
    font-size: 14px;
    opacity: 0.7;
}

.mining-earnings_b3 {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.mining-earnings_b3 h2 {
    color: #2d4494;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.earnings-graph_b3 {
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.graph-svg_b3 {
    width: 100%;
    height: 100%;
}

.graph-line_b3 {
    fill: none;
    stroke: #ff7b00;
    stroke-width: 3;
}

.graph-area_b3 {
    fill: url(#gradient);
    opacity: 0.2;
}

.transactions_b3 {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.transactions_b3 h2 {
    color: #2d4494;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.transaction-table-container_b3 {
    max-height: 350px;
    overflow-y: auto;
}

.transaction-table_b3 {
    width: 100%;
    border-collapse: collapse;
}

.transaction-table_b3 th {
    background-color: #f8f9fa;
    padding: 12px 15px;
    text-align: left;
    color: #666;
    font-weight: 600;
    position: sticky;
    top: 0;
}

.transaction-table_b3 td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
}

.transaction-table_b3 tr:last-child td {
    border-bottom: none;
}

.status-completed_b3 {
    color: #28a745;
    font-weight: 500;
}

.coming-soon-features_b3 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.kyc-coming-soon_b3, .withdrawal-coming-soon_b3 {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.kyc-btn_b3 {
    background-color: #e0e0e0;
    color: #666;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    cursor: not-allowed;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tooltip_b3 {
    position: relative;
    color: #666;
    cursor: help;
}

.tooltip-text_b3 {
    visibility: hidden;
    width: 200px;
    background-color: #333;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tooltip_b3:hover .tooltip-text_b3 {
    visibility: visible;
    opacity: 1;
}

.withdrawal-coming-soon_b3 {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
}

.notice-icon_b3 {
    color: #ff7b00;
    font-size: 24px;
    margin-bottom: 10px;
}

.withdrawal-coming-soon_b3 p {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.timeline_b3 {
    font-size: 14px;
    color: #666;
}

/* Settings Tab */
.settings-container_b3 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.settings-section_b3 {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.settings-section_b3 h2 {
    color: #2d4494;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.settings-form_b3 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group_b3 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group_b3 label {
    font-size: 14px;
    color: #666;
}

.form-group_b3 input {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group_b3 input:focus {
    border-color: #2d4494;
    outline: none;
}

.password-strength_b3 {
    margin-top: 10px;
}

.strength-bar_b3 {
    height: 5px;
    background-color: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.strength-fill_b3 {
    height: 100%;
    width: 0%;
    background-color: #e74c3c;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.strength-text_b3 {
    font-size: 12px;
    color: #666;
}

.submit-btn_b3 {
    background-color: #ff7b00;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn_b3:hover {
    background-color: #e66f00;
}

.notification-options_b3 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.notification-option_b3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.notification-option_b3:last-child {
    border-bottom: none;
}

.option-details_b3 {
    display: flex;
    flex-direction: column;
}

.option-name_b3 {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.option-desc_b3 {
    font-size: 14px;
    color: #666;
}

.toggle_b3 {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.toggle_b3 input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider_b3 {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e0e0e0;
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider_b3:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.toggle_b3 input:checked + .toggle-slider_b3 {
    background-color: #ff7b00;
}

.toggle_b3 input:checked + .toggle-slider_b3:before {
    transform: translateX(24px);
}

.security-options_b3 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.security-option_b3 {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.option-icon_b3 {
    width: 40px;
    height: 40px;
    background-color: #e6e7eb;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2d4494;
    font-size: 18px;
}

.option-status_b3 {
    font-size: 14px;
    margin-top: 5px;
}

.status-disabled_b3 {
    color: #dc3545;
}

.option-btn_b3 {
    background-color: #e0e0e0;
    color: #333;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
}

.option-btn_b3:hover {
    background-color: #d0d0d0;
}

.danger-zone_b3 {
    background-color: #fff8f8;
    border: 1px solid #ffebeb;
    border-radius: 8px;
    padding: 20px;
}

.danger-option_b3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.danger-btn_b3 {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.danger-btn_b3:hover {
    background-color: #c82333;
}

/* Modals */
.modal-overlay_b3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    display: none;
}

.modal_b3 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 101;
    display: none;
    animation: modalFadeIn 0.3s ease forwards;
}

.modal-content_b3 {
    background-color: white;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

.modal-header_b3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eaeaea;
}

.modal-header_b3 h2 {
    color: #2d4494;
    font-size: 20px;
    font-weight: 600;
}

.close-btn_b3 {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
}

.modal-body_b3 {
    padding: 20px;
}

.form-actions_b3 {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
}

.cancel-btn_b3 {
    background-color: #e0e0e0;
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn_b3:hover {
    background-color: #d0d0d0;
}

.save-btn_b3 {
    background-color: #ff7b00;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-btn_b3:hover {
    background-color: #e66f00;
}

/* Delete Confirmation Modal */
.delete-modal_b3 .modal-body_b3 {
    padding: 30px;
    text-align: center;
}

.warning-icon_b3 {
    color: #dc3545;
    font-size: 48px;
    margin-bottom: 20px;
}

.warning-text_b3 {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
}

.confirm-input_b3 {
    margin-bottom: 20px;
}

.confirm-input_b3 label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.confirm-input_b3 input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-align: center;
    font-size: 16px;
}

.modal-actions_b3 {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.delete-confirm-btn_b3 {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.delete-confirm-btn_b3:not([disabled]) {
    opacity: 1;
}

.delete-confirm-btn_b3:not([disabled]):hover {
    background-color: #c82333;
}

/* Toast Notification */
.toast_b3 {
    position: fixed;
    background-color: white;
    border-radius: 6px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.toast_b3.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon_b3 {
    color: #28a745;
    font-size: 24px;
}

.toast-message_b3 {
    font-size: 14px;
    color: #333;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .profile-container_b3 {
        width: 100%;
        margin-left: 0;
    }
    
    .profile-info_b3 {
        flex-direction: column;
    }
    
    .coming-soon-features_b3 {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .tab-btn_b3 {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .tab-content_b3 {
        padding: 20px;
    }
    
    .balance-value_b3 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .profile-header_b3 {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .user-brief_b3 {
        align-items: flex-start;
    }
    
    .tabs_b3 {
        flex-wrap: wrap;
    }
    
    .tab-btn_b3 {
        flex: 1;
        min-width: 100px;
        text-align: center;
    }
}