body {
    font-family: sans-serif;
    color:#707070;
    margin: 0;
    background-color: #f0f0f0;
    background-image: url('../img/fondo.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.header {
    background-color: #fff;
    padding: 15px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.pil-logo {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 120px;
    height: auto;
}

.boton-inicio {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 50px;
    height: auto;
    border: #707070 1px solid;
    background-color: #ffffff;
    color: #707070;
    text-decoration: none;
    border-radius: 40px;
    padding: 10px 20px;
    font-weight: bold;
}

.boton-inicio2 {
    border: #707070 1px solid;
    background-color: #ffffff;
    color: #707070;
    text-decoration: none;
    border-radius: 40px;
    padding: 10px 20px;
    font-weight: bold;
}


.menu-button {
    background-color: #25206f; /* Dark blue */
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 30px;
    padding: 15px 20px;
    margin-top: 15px;
    width: 90%;
    text-align: center;
    font-size: 1em;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.menu-text
{
    font-size: 1em;
    color: #707070;
    text-align: center;
    text-decoration: none;
}

.center-container
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.pil-button
{
    background-color: #25206f; /* Dark blue */
    color: #fff;
    border-radius: 30px;
    padding: 15px 20px;
    width: 300px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1em;
    text-decoration: none;
}

.menu-button:hover {
    background-color: #34495e;
}

.emergency-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #fff; /* Red */
    color: #fff;
    border: red solid 2px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.emergency-button img {
    width: 40px;
    height: auto;
}

.bottom-bar {
    background-color: #f0f0f0;
    padding: 10px 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #ddd;
}

.bottom-bar-icon {
    color: #555;
    font-size: 1.2em;
    cursor: pointer;
}

.lineanaranja {
    position: fixed;
    top: 20px;
    left: -1px;
    width: 400px;
    height: auto;
}

.lineaverde {
    position: fixed;
    bottom: 20px;
    left: -1px;
    width: 400px;
    height: auto;
}

.button-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 40px; /* Space between buttons */
}
.button-container button {
    background-color: transparent;
    border: none;
    color: #707070; /* Bootstrap primary color */
    font-size: 2em;
    cursor: pointer;
}

.center-box
{
    background-color: #fff;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
    text-align: center;
    border: 2px solid #25206f;
    margin-bottom: 70px;
}

.center-box a
{
    text-decoration: none;
    color: #707070;
    font-weight: bold;
    border: 2px solid #707070;
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
}

h2, h3
{
    font-weight: bolder;
}

.accordion-button
{
    background-color: #25206f; /* Dark blue */
    color: #fff;
    border-radius: 30px;
    padding: 15px 20px;
    width: 300px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1em;
    text-decoration: none;
}

.sub-accordion-content
{
    min-height:50px;
}

.delete-button
{
    margin-top:-24px;
    background-color: white;
    padding: 3px;
    border-radius: 5px;
    border: 1px solid #707070;
}