/* General styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #f4f4f4;;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 40px;
}

h1 {
    margin: 0;
    font-size: 32px;
}

p {
    font-size: 18px;
    margin-top: 10px;
}

/* Formulario de rastreo */
.track-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

#trackingForm {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#trackingNumber {
    padding: 10px;
    font-size: 16px;
    margin-bottom: 10px;
    width: 200px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #5a67d8;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #4c51bf;
}

/* Estilo de la guía de envío */
.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    flex-direction: column;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.step.active {
    opacity: 1;
}

.step-circle {
    width: 60px;
    height: 60px;
    background-color: #f3f3f3; /* Naranja claro */
    border: 3px solid #d40511; /* Naranja oscuro */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    transition: transform 0.3s, background-color 0.3s;
}

.step-circle img {
    width: 30px;
    height: 30px;
}

.step-text {
    font-size: 20px;
    font-weight: 500;
}

.step-circle.active {
    background-color: #ff8c00; /* Naranja oscuro */
    color: white;
    transform: scale(1.2);
}

footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #00bfff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

