.sge-detalle-servicio {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

.sge-detalle-servicio h2 {
    margin-bottom: 10px;
}

.sge-estado-actual {
    margin-bottom: 20px;
    font-size: 15px;
    color: #2563eb;
}

.sge-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.sge-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

/* Timeline */
.sge-timeline {
    margin: 20px 0 30px;
    padding-left: 20px;
    border-left: 3px solid #e5e7eb;
}

.sge-timeline-item {
    margin-bottom: 16px;
    position: relative;
}

.sge-timeline-item::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #2563eb;
    border-radius: 50%;
    position: absolute;
    left: -27px;
    top: 4px;
}

.sge-timeline-item.completed::before {
    background: #16a34a;
}

.sge-timeline-item span {
    font-size: 14px;
    color: #374151;
}

/* Acciones */
.sge-acciones {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.sge-acciones button {
    padding: 10px 16px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.sge-btn-cancelar {
    background: #dc2626;
    color: #fff;
}

.sge-btn-editar {
    background: #2563eb;
    color: #fff;
}

.sge-editar-servicio label {
    display: block;
    margin-bottom: 12px;
}

.sge-editar-servicio input,
.sge-editar-servicio textarea {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

.sge-form-acciones {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

