.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 20px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    position: relative;
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
}

.navigation-buttons button {
    width: 48%;
}

.alert-container {
    margin-bottom: 15px;
}

.ejemplos-container,
.descripcion-container {
    margin-top: 10px;
    padding: 10px;
    background-color: #eef;
    border-radius: 5px;
    display: none;
}

.ejemplos-container ul {
    list-style-type: disc;
    padding-left: 20px;
}

.ejemplos-container li {
    margin: 0;
}

.slide-counter {
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
    font-size: 1.2em;
}

.label-destacado {
    font-weight: bold;
    font-size: 1.2em;
}

.carousel-caption h5, 
.carousel-caption p {
    -webkit-text-stroke: 1px black; /* Contorno de 1px en color negro */
    color: white; /* Color del texto */
}

.title-bar {
    background-color: #444;
    color: #f1f1f1;
    padding: 15px;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    border-radius: 8px 8px 0 0;
    border: 2px solid #888;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: -30px;
    left: 0;
    width: calc(100%);
    box-sizing: border-box;
}
