body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
}

h1 {
  text-align: center;
  margin: 40px 0 30px 0;
  font-weight: 700;
  font-size: 32px;
}

input[type=text]{
    border: 1px solid #ccc;
    border-radius: 4px;
    padding-left: 8px;
    padding-top: 3px;
    padding-bottom: 3px;}

table[width="100%"] {
  margin: 0 auto 40px auto;
  border-spacing: 30px 0;
}

// odkazy v canvasu
canvas {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  left: 0;
  top: 0;
}
.canvas-link {
  position: absolute;
  display: block;
  //background-color: rgba(201, 76, 76, 0.3);
}
.canvas-wrapper {
  border-radius: 15px;      /* kulaté rohy */
  overflow: hidden;         /* zajistí, že obsah canvasu nepřečnívá */
  background: white;        /* barva pozadí obalu */
  box-shadow: 0 6px 20px rgba(0,0,0,0.1); /* jemný stín */
  margin: 20px auto;        /* středění na stránce */
}

// modální okno

.modal {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* ztmavení */
  z-index: 1000;
  overflow-y: auto;
}
.modal-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);   /* jen horizontálně */
  background: white;
  border: 3px solid #9e9e9e;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  min-width: 600px;
  z-index: 1001;
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.close {
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

.dynastie-table {
  border-collapse: collapse;
  border: 1px solid #ccc;
}
.dynastie-table th,
.dynastie-table td {
  border: 1px solid #ccc;
  padding: 6px 10px;
}
.dynastie-table th,
.dynastie-table td {
  border: 1px solid #ccc;
  padding: 6px 10px;
}
