/* Estado de Presupuesto*/
.tracking-box {
    background: #eaf3fa;
    border-radius: 8px;
    padding: 24px 20px;
    margin-bottom: 24px;
    position: relative;
}
.tracking-date {
    font-size: 3rem;
    font-weight: bold;
    color: #253858;
    line-height: 1;
}
.tracking-divider {
    border-left: 4px solid #e5e5e5;
    margin: 0 32px;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
}
.timeline {
    border-left: 4px solid #e5e5e5;
    padding-left: 24px;
    position: relative;
}
.timeline .event {
    position: relative;
    margin-bottom: 32px;
}
.timeline .event:last-child {
    margin-bottom: 0;
}
.timeline .event::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 4px;
    width: 16px;
    height: 16px;
    background: var(--adminuiux-theme-2);
    border-radius: 50%;
    border: 2px solid #fff;
    z-index: 1;
}
.timeline .event-inicio::before {
    content: '';
    position: absolute;
    left: -4px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 16px solid var(--adminuiux-theme-2); /* Color de la flecha */
    border-right: none;
    border-radius: 0;
    z-index: 1;
}
.timeline .event-title {
    font-weight: bold;
    color: #253858;
}
.timeline .event-location {
    color: var(--adminuiux-theme-1-rgb);
    font-size: 0.95rem;
}
.timeline .event-location-success {
    color: var(--adminuiux-theme-2);
    font-size: 0.95rem;
}
.timeline .event-location-danger {
    color: var(--bs-danger);
    font-size: 0.95rem;
}
.timeline .event-cobertura-success {
    box-sizing: border-box;
    padding: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    border-radius: 16px;
    height: 24px;
    align-items: center;
    white-space: nowrap;
    margin: 4px 4px 4px 4px;
    width: fit-content;
    background: var(--adminuiux-theme-2);
    color: white;
    font-size: 0.95rem;
}
.timeline .event-cobertura-danger {
    box-sizing: border-box;
    padding: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    border-radius: 16px;
    height: 24px;
    align-items: center;
    white-space: nowrap;
    margin: 4px 4px 4px 4px;
    width: fit-content;
    background: var(--bs-danger);
    color: white;
    font-size: 0.95rem;
}
.timeline .event-date {
    color: #6c757d;
    font-size: 0.95rem;
}
.tracking-number {
    font-size: 1.3rem;
    font-weight: bold;
    color: #253858;
}

.tracking-number span{
    color: var(--adminuiux-theme-1);
}
.icon-link {
    color: #1a73e8;
    text-decoration: none;
    margin-right: 16px;
    font-size: 1.1rem;
}
.tracking-plus {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}