/* Contenedor de la barra */
.bar-container {
    position: relative;
    height: 100%;
}

/* Barra lateral */
.sidebar-header {
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #6a0dad, #00ff99); /* Gradiente */
    box-shadow: 0 0 10px linear-gradient(to bottom, #6a0dad, #00ff99);;
    border-radius: 5px;
    z-index: 1;
}

.sidebar {
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #6a0dad, #00ff99); /* Gradiente */
    box-shadow: 0 0 5px linear-gradient(to bottom, #6a0dad, #00ff99);;
    border-radius: 5px;
    z-index: 1;
}

.sidebar-header::before {
    content: '';
    position: absolute;
    margin: auto;
    width: 50%;
    height: 100%;
    background: linear-gradient(to bottom, #6a0dad, #00ff99);
    filter: blur(10px);
    opacity: 0.3;
    z-index: 0;
}

.sidebar::before {
    content: '';
    position: absolute;
    margin: auto;
    width: 50%;
    height: 100%;
    background: linear-gradient(to bottom, #6a0dad, #00ff99);
    filter: blur(10px);
    opacity: 0.1;
    z-index: 0;
}

/* Estilo de los iconos */
.bar-icon {
    color: #9298A1;
    font-size: 20px;
    width: 20px;
    height: 20px;
    background-color: transparent; /* Fondo oscuro */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

svg {
    width: 100%;
    height: auto;
    visibility: hidden;    
}

.ell {
    fill: none;
    z-index: 1;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle at top, #0C1116, rgba(0, 0, 0, 0.8));
    /* background: radial-gradient(circle at top, #00ba94, rgba(0, 0, 0, 0.8)); */
    border: 1px solid #0C1116; /* Borde negro */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Sombra sutil por debajo */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto; /* Centrar el círculo */
}

.icon-circle-teal {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 186, 148, 0.8);
    border: 1px solid #00ba94; /* Borde negro */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Sombra sutil por debajo */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto; /* Centrar el círculo */
}

.icon-white {
    color: white;
}

.icon-black {
    color: #0C1116;
}

.icon-only {
    margin-bottom: 0.5em; 
    margin-top: 0.5em
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.svg-container {
    position: relative;
    overflow: visible;
}

.svg-transition {
    position: absolute;
    top: -150px;
    right: 0px;
    z-index: 0;
    width: 200%;
    opacity: 0.2;
}

.svg-transition-square {
    position: absolute;
    bottom: -250px;
    left: 0px;
    z-index: 0;
    width: 200%;
    opacity: 0.2;
}

.git-branch-svg {
    width: 100%;
    height: auto;
    max-height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
}

.bar-container {
    position: relative;
    height: 100%;
}

.git-line {
    position: relative;
    left: 45%;
    width: auto;
    max-width: none;
    z-index: 0;
    filter: drop-shadow(0 0 10px rgba(106, 13, 173, 0.3)) drop-shadow(0 0 10px rgba(0, 255, 204, 0.3));
}

.text-under{
    text-decoration: underline;
}




/* Estilos para la línea temporal */
.timeline {
    position: relative;
    padding: 10px 0;
    margin: 20px 0;
    list-style-type: none;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 2px;
    background-color: #4CAF50;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    padding: 20px;
    margin-bottom: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 45%;
    margin-left: 25%;
}

.timeline-item:nth-child(odd) {
    margin-left: 5%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

.timeline-item:nth-child(odd)::after {
    right: auto;
    left: -10px;
    border-color: transparent white transparent transparent;
}

.timeline-item h3 {
    margin: 0;
    color: #333;
}

.timeline-item p {
    margin: 10px 0 0;
    color: #555;
}

.timeline-item time {
    display: block;
    margin-top: 5px;
    color: #888;
}