.elementor-3215 .elementor-element.elementor-element-a4f754b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:100px;--margin-bottom:100px;--margin-left:0px;--margin-right:0px;}.elementor-3215 .elementor-element.elementor-element-0a4c840{text-align:center;}.elementor-3215 .elementor-element.elementor-element-0a4c840 .elementor-heading-title{font-size:40px;}.elementor-3215 .elementor-element.elementor-element-b3ee53f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:50px;--margin-bottom:100px;--margin-left:0px;--margin-right:0px;}.elementor-3215 .elementor-element.elementor-element-31aeb37{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:100px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:50px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for container, class: .elementor-element-31aeb37 */.dashboard-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Ensures equal height */
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap; /* Allows wrapping on small screens */
}

/* Investment History - Wider on desktop, full width on mobile */
.investment-history {
    flex: 2;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 6px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 450px;
    border:1px solid rgba(0, 0, 0, 0.1);
}

.progress-text{
    color:#1746e0;
    font-weight:bold;
}

/* Investment Progress - Smaller on desktop, full width on mobile */
.progress-section {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 6px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 450px;
    border:1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* ✅ Make layout responsive */
@media (max-width: 768px) {
    .dashboard-container {
        flex-direction: column; /* Stack items on top of each other */
        align-items: center;
    }
    
    .investment-history, 
    .progress-section {
        width: 100%; /* Full width */
        min-height: auto; /* Allow height to adjust */
    }
}/* End custom CSS */