
.tarjeta {
    border-radius: 10px;
    padding: 15px;
    margin: 15px;
    background-color: #fdf6e3;
    border: 3px solid #a67c52;
    box-shadow: 0 0 12px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    position: relative;
}
.opcion {
    margin-left: 20px;
}

#votosDisponibles{
    width: 10%;
    background-color: #b32370;
    color:aliceblue;
    border: 3px solid #a67c52;
    border-radius: 12px;
    text-align: center;
}



.votada,.expirada{
    pointer-events: none;    /* Bloquea cualquier interacción del mouse */
    user-select: none;       /* Evita que se pueda seleccionar el texto */
    background-color: grey;
    opacity: 0.9; 
}



.cartelVotada{

    background-color: rgb(16, 101, 36);
    display: flex;
    text-align: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.cartelExpirada{
    background-color: rgb(136, 24, 123);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.contenedor-banner{

    margin-top: 200px;
    background-color: rgba(15, 75, 55, 0.674);
    color:aliceblue;
    border: 2px solid #0097b2;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0,0,0,0.3);
    padding: 2rem;
}

#introduccionEncuestas{

    margin: 20px auto;
    background-color: #0097b2;
    color: black;
    border: 3px solid rgba(15, 75, 55, 0.674);
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0,0,0,0.3);
    padding: 2rem;
    font-size: 1.2rem;

}


#opcionesContribuye {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(27, 119, 88);
    border-radius: 10px;
    color: white;
    width: 60%;
    border: 2px solid #e2bc12;
    padding: 10px;
 
  }

  #tituloContribuye {

    text-align: center;
    font-size: 1.5rem;
  }

  #opcionesContribuye button {
    background-color: orange;
    border: none;
    font-size: 2rem;
    border-radius: 10px;
  }


  footer{

    margin-top: 500px;
  }



