/* Estilo para la barra de progreso */
.progress-container {
    display: flex;
    justify-content: center;
    align-items: start;
    margin: 20px 0;
    gap: 7px;
}

/* Estilo para los círculos de progreso */
.circle {
    width: 15px;
    height: 15px;
    border: 2px solid #333;
    border-radius: 50%;
    background-color: aliceblue;
    display: inline-block;
}

.circle.active {
    background-color: #ba5663;
}

.custom-gradient-background {
    background: rgb(219, 73, 73);
    background: linear-gradient(90deg, rgba(219, 73, 73, 1) 0%, rgba(100, 34, 118, 1) 0%, rgba(20, 43, 73, 1) 58%);
}

.no-bg {
    background: transparent;
}

body {
    background: rgb(219, 73, 73);
    background: linear-gradient(90deg, rgba(219, 73, 73, 1) 0%, rgba(100, 34, 118, 1) 0%, rgba(20, 43, 73, 1) 58%);
}

.sidebar {
    background-color: #142b49;
    min-width: 280px;
    max-width: 280px;
    color: #85888e;
    overflow: hidden;
    border-right: none;
}

.new-white {
    color: #d5d9d8;
}

a.nav-link {
    color: #d5d9d8;
}
