/** **************************************************
* Este software pertenece a Logo Texo SAS.          *
* Hace parte del software LT js                     *
* Prohibida su reproduccion total o parcial         *
* Copyright 2017-2026 Logo Texo SAS.                *
****************************************************/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
}

header {
  background: #333;
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 1.5rem;
}

header button {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  cursor: pointer;
}

main {
  display: flex;
  padding: 1rem;
  gap: 1rem;
}

.contenedorCanvas {
  position: relative;
  border: 2px solid #ccc;
}

.fondo {
  display: block;
}

.dialogoEsfuerzo
{
    position: absolute;
    top:40%;
}

.canvasDibujo {
  position: absolute;
  top: 0;
  left: 0;
}

.contenedorPoligonos {
  flex: 1;
  background: #fff;
  padding: 1rem;
  border: 2px solid #ccc;
  overflow-y: auto;
  max-height: 600px;
}

.contenedorPoligonos h2 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contenedorPoligonos ul {
  list-style: none;
}

.contenedorPoligonos li {
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid #ddd;
  background: #f9f9f9;
}
