/* Estilo general para el modal */
.logout-dialog {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  padding: 16px;
  width: 320px;
  max-width: 95vw;
  font-family: 'Roboto', sans-serif;
}

/* Título del modal */
.modal-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 16px;
}

/* Botones de acción */
.modal-button {
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 4px;
  text-transform: none;
  font-weight: 500;
  margin: 0 8px;
}

/* Asegurar que el contenido y los botones estén alineados correctamente */
md-dialog-actions {
  padding: 16px;
  justify-content: center;
}

/* Mejorar la visibilidad del texto */
.md-dialog-content {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 16px;
}

/* Estilo de fondo y sombras */
md-dialog-content {
  background-color: #f9f9f9;
  border-radius: 6px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
