﻿@import url('https://fonts.googleapis.com/css?family=Poppins:400,600,700,900');

.custom-carousel-container {
    width: 100%;
    max-width: 500px;
    margin: auto;
}


.custom-carousel-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 4px;
}

    .custom-carousel-controls button {
        background-color: #2f5ea7 !important;
        border: none;
        padding: 4px 6px;
        border-radius: 3px;
        width: 25px;
        height: 25px;
    }

        .custom-carousel-controls button:hover {
            opacity: 0.8;
        }

    .custom-carousel-controls .custom-prev-icon,
    .custom-carousel-controls .custom-next-icon {
        filter: invert(1);
        width: 15px;
        height: 15px;
    }

.custom-chart-container {
    width: 100%;
    height: 350px;
    padding: 20px;
}

.custom-title {
    font-size: 18px;
    font-weight: bold;
    color: #437a8a;
    text-align: center;
}

.custom-subtitle {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #2b2b2b;
    margin-bottom: 10px;
}

    .custom-subtitle span {
        color: #2f5ea7;
    }


.investment-chart-wrapper {
    text-align: center;
    padding-top: 10px;
}

.investment-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.investment-value {
    font-size: 26px;
    font-weight: bold;
    color: #a55;
}

.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;
}

