/* 
    Created on : 30-Dec-2024, 11:51:01 am
    Author     : prathmesh
*/

.dashBoardHomeScreen {
    display: flex;
}
.dashboardBranchSelectpickerDiv{
    display: flex;
    gap: 30px;
    margin-left: 25px;
    margin-top: 5px;
    align-items: center;
}

.dashboardScreenTitleHeading{
    font-weight: bold;
    font-size: 22px;
}

.dashBoardVerticalBar {
    width: 80px;
    height: 70vh;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background-color: #f2f4f7;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0; /* Adjust this value if you have a header or other elements above */
}

.dashboardIconImages {
    height: 38px;
    width: 38px;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.dashboardIconImages:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.dashboardHomeContentScreen {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: calc(100vh - 220px); /* Adjust the height as needed */
    overflow-y: auto;
}

.dashboardHomeCard {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin: 0px 20px 18px 20px;
    box-shadow: 0 2px 5px #0647C13E;
    background-color: #ffff;
}

.sectionWrapper{
    margin-top: 5px;
    position: relative;
    margin-left: 5%;
    margin-right: 5%;
}

.card-top-left {
    flex: 1 1 100%;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.card-top-left img {
    width: 32px;
    height: 32px;
    margin-right: 15px;
}

.card-top-left .title {
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
    color: #333; /* Darker color for better contrast */
}

.card-top-left .amount {
    font-size: 20px;
    color: #28a745;
    font-weight: 500;
    background-color: #f0f8ff;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.card-top-left .amountMinus {
    color: red;
}

.chart-section {
    display: flex;
    width: 100%;
    gap: 10px;
}

.chart-section > div {
    flex: 1;
    padding: 10px;
    text-align: center;
    height: auto;
    background-color: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chart-section > div:hover{
    transform: translateY(-5px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.dashboardHomeBarchartDiv {
    background-color: #f7f7f7;
    border: 1px solid #ddd;
}

.dashboardHomePiechartDiv {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
}


.dashboardPanel {
    border-radius: 10px;
    padding: 20px;
    background-color: #ffff;
    height: 55vh;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboardPanel:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.chart-placeholder {
    height: 300px;
    background-color: #e9ecef;
    border-radius: 10px;
    margin-bottom: 20px;
}
.table th, .table td {
    vertical-align: middle;
}
.select-container {
    margin-bottom: 10px;
    z-index: 1;
    position: relative;
}

#InvestmentBackIcon{
    font-size: 16px;
    border-radius: 50%;
    border: 2px solid #007bff;
    padding: 10px;
    background-color: #f0f4f8;
    color: #007bff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, color 0.3s;
}
#InvestmentBackIcon:hover{
    background-color: #007bff;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}


@media (max-width: 768px) {
    .chart-section {
        flex-direction: column;
    }

    .chart-section > div {
        margin-bottom: 10px;
    }
}

.dashboardCanvas{
    width: 100% !important;
    height: 100% !important;
}

/*
Name :  Raju Jadhav
use : to appaly css for dashboard back button
*/
#backButtonForDashboard{
    font-size: 16px;
    border-radius: 50%;
    border: 2px solid #007bff;
    padding: 10px;
    margin-left: 15px;
    background-color: #f0f4f8;
    color: #007bff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, color 0.3s;
}
#backButtonForDashboard:hover{
    background-color: #007bff;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.carousel-control {
    width: auto;
    background: none;
    color: #000;
    text-shadow: none;
}

.caroselBtn{
    font-size: 16px;
    background-color: #f0f4f8;
    color: #007bff;
    transition: background-color 0.3s, color 0.3s;
}

.caroselBtn:hover{
    color: black;
    cursor: pointer;
}

.extraScreenTitleDiv{
    margin-top: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    text-decoration: underline;
}

.maturity-table-parent {
    display: flex;
    height: 42vh; /* Set the height of the parent div */
    overflow: hidden; /* Prevent overflow beyond the allotted space */
}

.maturity-table-parent >.table-responsive {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.maturity-table-wrapper {
    flex: 1;
    overflow-y: auto;
    position: relative;
}

.maturity-table-wrapper >.table thead th {
    position: sticky;
    top: 0;
    background-color: #fff; /* Background color should match table styling */
}

.maturity-table-wrapper::-webkit-scrollbar {
    width: 0; /* Remove scrollbar width */
    height: 0; /* Remove scrollbar height */
}

.maturity-table-wrapper {
    -ms-overflow-style: none; /* IE 10+ */
    scrollbar-width: none; /* Firefox */
}

.maturity-table-wrapper::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}