﻿@import url('https://fonts.googleapis.com/css?family=Poppins:400,600,700,900');

.equal-height-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    align-items: stretch;
}

.card {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* background: #f8f9fa; vv */
	border-radius: 20px;
    border-color: #9acd66; /*yeni eklendi vv */
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); vv */
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.carousel-inner {
    width: 100%;
}

.chart-container,
.custom-chart-container {
    width: 100%;
    /*  min-height: 400px; */
}

.investment-chart-wrapper {
    text-align: center;
    padding-top: 10px;
}

.investment-bar {
    width: 90px;
    display: inline-block;
    border-radius: 10px;
    margin: 10px;
    text-align: center;
    padding-top: 10px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    position: relative;
}

.bar-blue {
    background-color: #36a2eb;
    height: 140px;
}

.bar-orange {
    background-color: #ff9f40;
    height: 120px;
}

.bar-green {
    background-color: #4bc0c0;
    height: 100px;
}

.bar-purple {
    background-color: #9966ff;
    height: 80px;
}

.investment-label {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-top: 5px;
}

.investment-percentage {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    font-weight: bold;
}

