﻿body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.bg-light {
    background-color: #f8f9fa;
}

.rounded {
    border-radius: 0.25rem;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.mb-4, .mb-5 {
    margin-bottom: 1.5rem;
}

.text-center {
    text-align: center;
}

.text-dark {
    color: #343a40;
}

.text-secondary {
    color: #6c757d;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 300;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.service-top-border {
    border-top: 5px solid red;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none; /* Elimina la imagen de fondo predeterminada */
    background-color: transparent; /* Fondo transparente */
}

    .carousel-control-prev-icon::after,
    .carousel-control-next-icon::after {
        content: ''; /* Contenido vacío para los pseudo-elementos */
        display: inline-block;
        width: 15px;
        height: 15px;
        border: solid black; /* Cambia el color del borde para que sea visible */
        border-width: 0 3px 3px 0;
    }

    .carousel-control-prev-icon::after {
        transform: rotate(135deg);
        margin-left: 10px;
    }

    .carousel-control-next-icon::after {
        transform: rotate(-45deg);
        margin-right: 20px;
    }

.carousel-control-prev,
.carousel-control-next {
    width: 5%; /* Ajusta el ancho de los botones de control */
}

.texto-limitado {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*Esto es para el timeline del Dardboard*/ 

.timeline {
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 20px;
}

    .timeline::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #ccc;
        z-index: 0;
    }

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

    .timeline-step .circle {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: #ccc;
        margin-bottom: 5px;
    }

    .timeline-step.active .circle {
        background-color: orange; /* Default color, will be overwritten based on the status */
    }

.timeline.pending .timeline-step.active .circle {
    background-color: orange;
}

.timeline.in-review .timeline-step.active .circle {
    background-color: blue;
}

.timeline.completed .timeline-step.active .circle {
    background-color: green;
}

.timeline.rejected .timeline-step.active .circle {
    background-color: red;
}
