.bz-sg-header {
    background: var(--bz-dark, #111111);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.bz-sg-header h2 {
    margin: 0;
    color: var(--bz-white, #fff);
    font-size: 28px;
}

.bz-sg-header p {
    color: var(--bz-cyan, #00BCF2);
    margin-top: 5px;
    font-weight: bold;
}

.bz-sg-controls {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.bz-sg-btn {
    padding: 12px 20px;
    border-radius: 30px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    transition: all 0.2s;
}

.bz-sg-btn-magenta {
    background: var(--bz-magenta, #E5237C);
}

.bz-sg-btn-magenta:hover {
    background: #d01869;
    box-shadow: 0 5px 15px rgba(227, 35, 124, 0.4);
}

.bz-sg-btn-cyan {
    background: var(--bz-cyan, #00BCF2);
    color: #000 !important;
}

.bz-sg-btn-cyan:hover {
    background: #0099cc;
    box-shadow: 0 5px 15px rgba(0, 188, 242, 0.4);
}

.bz-sg-select,
.bz-sg-input {
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #222;
    color: #fff;
    font-size: 14px;
    outline: none;
    min-width: 200px;
}

.bz-sg-card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid var(--bz-cyan);
    cursor: pointer;
    transition: transform 0.2s;
}

.bz-sg-card:hover {
    background: #222;
    transform: translateY(-3px);
}

.bz-sg-card h3 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 18px;
}

.bz-sg-card p {
    margin: 0;
    color: #aaa;
    font-size: 14px;
}

.bz-sg-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
    margin-top: 10px;
}

.status-espera {
    background: #333;
    color: #fff;
}

.status-calle {
    background: #28a745;
    color: #fff;
    animation: pulse 2s infinite;
}

.status-recogida {
    background: #dc3545;
    color: #fff;
}

.bz-sg-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.bz-sg-modal-content {
    background: #111;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bz-sg-btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.bz-sg-timeline {
    margin-top: 20px;
    border-left: 2px solid #333;
    padding-left: 20px;
    position: relative;
}

.bz-sg-time-item {
    margin-bottom: 15px;
    position: relative;
    color: #ccc;
    font-size: 14px;
    display: flex;
    gap: 15px;
}

.bz-sg-time-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #555;
}

.bz-sg-time-item.active {
    color: #fff;
    font-weight: bold;
}

.bz-sg-time-item.active::before {
    background: var(--bz-cyan);
    box-shadow: 0 0 10px var(--bz-cyan);
}

.bz-sg-time-item.passed {
    color: #666;
}

.bz-sg-time-item.passed::before {
    background: var(--bz-magenta);
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}