﻿.dbd-card-container {
    display: flex;
    justify-content: flex-start;
    margin: 10px;
    border-radius: 5px;
    position: relative;
    flex-wrap: wrap;
}

.dbd-card-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #f7f7f7;
    height: 150px;
    border-radius: 5px;
    position: relative;
    padding: 20px;
    margin: 15px;
    flex: 1;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.dbd-card-icon {
    width: 70px;
    height: 70px;
    border: 3px solid whitesmoke;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 30px;
    position: absolute;
    top: -20px;
    background-color: #d10000;
    color: white;
}

.dbd-card-topic {
    font-size: 16px;
    margin-top: 24px;
}

.dbd-card-number {
    margin-top: 0px;
    font-size: 24px;
    font-weight: 500;
}

.dbd-card-img {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 4px;
    opacity: 0.2;
}

.dbd-card-img img {
    height: 70%;
}

.dbd-bar-chart {
    width: 100%;
    height: 300px;
    background-color: #fafafa;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.1);
}

.dbd-chart-container {
    padding: 10px 10px 10px 20px;
    display: flex;
    gap: 10px;
    flex-direction: row;
}

.dbd-goal-container {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    padding: 20px;
    background-color: #353a40;
    margin-bottom: 20px;
    border-radius: 5px;
    color: white;
    justify-content: space-between;
}


.goal {
    margin-bottom: 25px;
    flex: 1;
    padding: 20px;
    max-width: 250px;
    min-width: 250px;
}

.goal .label, .value {
    display: inline-block;
    font-weight: bold;
}

.goal .label {
    width: 70%;
    color: cyan;
}

.goal .value {
    width: 100%;
    text-align: right;
    color: white;
}

.bar-container {
    background: #464d55;
    height: 10px;
    border-radius: 5px;
    margin-top: 5px;
}

.bar {
    height: 100%;
    border-radius: 5px;
}

.goal-blue {
    background-color: #4285f4;
}

.goal-red {
    background-color: #ea4335;
}

.goal-green {
    background-color: #34a853;
}

.goal-yellow {
    background-color: #fbbc05;
}

.voucher-group-header {
    display: flex;
    justify-content: center;
    padding: 10px;
    font-size: 20px;
    font-weight: 600;
}