#dashboard {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    gap: 20px;
}

.dash-sidebar {
    display: flex;
    flex-direction: column;
    font-size: 18px;
}

.dash-side-item {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    color: #ffffff;
}

.dash-side-item-active {
    background-color: #0d0d0d;
    border-radius: 50%;
    border: 0.5px solid #ffffff10;
}

.dash-graph-container {
    width: 100%;
    height: 100%;
    background-color: #0d0d0d;
    border-radius: 20px;
    border: 0.5px solid #ffffff10;
    color: #F5F5F5;
    padding: 10px 20px;
    position: relative;
}

.dash-card-info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.dash-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
    background-color: #01001B;
    border-radius: 15px;
    gap: 5px;
    overflow: hidden;
    position: relative;
}

.dash-card > * {
    z-index: 2;
}

.ico {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #FFFFFF0D;
    border: 0.5px solid #ffffff10;
}

.mini-blur-card-dash {
    height: 100px;
    width: 100px;
    background-color: #6F02F5;
    border-radius: 50%;
    filter: blur(70px);
    position: absolute;
    right: -15px;
    top: -15px;
    z-index: 1;
}

.dash-indicator {
    color: #0EA215;
    display: inline-block;
    transform: rotate(180deg);
}

.dash-graphs {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 20px;
    margin-bottom: 10px;
}

.dash-graph {
    background-color: #01001B;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #ffffff10;
    min-height: 300px;
    z-index: 1;
    max-height: 450px;
}

.dash-graph > p {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
    opacity: 0.6;
    margin-bottom: 10px;
}

.dash-graph-total-request {
    grid-column: span 5;
}

.dash-graph-media-response-time {
    grid-column: span 5;
}
.dash-graph-total-request-api {
    grid-column: span 6;
}
.dash-graph-errors-alerts {
    grid-column: span 4;
}

.blur-graphs {
    filter: blur(1000px);
    background-color: #1109C3;
    border-radius: 50%;
    width: 600px;
    height: 600px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}