/* The Modal (background) */
.modal {
    display: block;
    position: fixed;
    z-index: 1;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
  
/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrar contenido horizontalmente */
}

/* The Close Button */
.close {
    color: #aaa;
    align-self: flex-end;
    font-size: 28px;
    font-weight: bold;
}
  
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
  
.modal-title {
    margin: 0;
    padding-bottom: 20px;
    text-align: center;
}

.modal-columns {
    display: flex;
    justify-content: space-around; /* Espacio entre columnas */
    width: 100%;
}

.modal-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    flex: 1; /* Asegura que todas las columnas tengan el mismo ancho */
}

.modal-column i {
    font-size: 48px;
    margin-bottom: 10px;
}

.modal-column p {
    margin: 5px 0;
    text-align: center;
}

/* Estilo para dashicons */
.dashicons-yes {
    color: green;
}

.dashicons-no {
    color: red;
}