html {
    scroll-behavior: smooth;
}


.tooltip {
    position: absolute;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    width: max-content;
    padding: 7px;
    border-radius: 3px;
    pointer-events: none;
    display: none;
}

.highlight {
    border: 20px solid red; /* Example: Add a yellow border */
    background-color: rgba(255, 255, 0, 0.3); /* Example: Add a yellowish background */
    z-index: 2000; /* Make sure it's on top */
}


.grid-container {   
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    grid-template-rows: repeat(auto-fill, minmax(60px, 1fr)); */
    grid-gap: 0px;
    padding: 20px;
    border: 3px solid teal;
}
.grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    /* font-family: Arial, sans-serif;*/
    font-size: 12px; 
   
    /* box-shadow: 0 0 2px rgba(0, 0, 0, 0.3); */
    position: relative;
    width: 30px;
    height: 30px;
    grid-gap: 20px;
    padding: 0px;
  /*  border: 1px solid rgba(0, 0, 0, 0.2);*/
    /* Visible gridlines */
}

p{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: smaller;
    color: rgb(80, 3, 104);
    padding: 0.5em;
    margin: 1pt;
}
p:hover {
    background-color: white ; 
}
a{
    text-decoration: none;
}
a:link, a:visited {
    color: rgb(80, 3, 104);
}

a:hover {
    color: rgb(184, 47, 243);
}
.dynmaplink{
    padding: 0.2em;
    border: 1pt dotted darkviolet;
    background-color: rgba(190, 42, 234, 0.3);
    border-radius: 2em;
    color: black;
}