/* --- Basic things ---- */
body {
    background-color: #f0f0f0;
    font-family: 'Courier New', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

h1, h2, h3, h4, h5, h6, p, pre {
    color: #828282;
    text-align: justify;
}

/* --- Link colors --- */
a:link, a:visited {
    color: #757575;
    text-decoration: none;
}

a:hover, a:active {
    color: #ff0040;
    text-decoration: underline;
}

/* --- Container stuff --- */
.container {
    position: relative;     
    max-width: 800px;
    width: 800px;
    height: 450px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.door-container {
    position: relative;
    width: 800px;
    height: 450px;
    display: grid;
}

/* --- Styling for the two main panels --- */
.panel {
    background-color: #e1e1e1;
    padding: 5%;
    box-sizing: border-box;
    overflow: auto;
}

.lil-square {
    position: absolute;
    background-color: #e1e1e1;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lil-square p {
    color:#e1e1e1;
    margin: 0;
}

/* --- Custom Scrollbar Styling --- */

/* Firefox */
.panel {
  scrollbar-width: thin;
  scrollbar-color: #a0a0a0 #e1e1e1;
}

/* For WebKit browsers (Chrome, Safari, Edge) */

.panel::-webkit-scrollbar {
  width: 8px;
}

.panel::-webkit-scrollbar-track {
  background: #e1e1e1; /* Matches your panel background */
}

.panel::-webkit-scrollbar-thumb {
  background-color: #a0a0a0; /* A soft, neutral gray */
  border-radius: 4px;      /* Gives it rounded corners */
  border: 2px solid #e1e1e1; /* Creates a nice padding effect */
}

.panel::-webkit-scrollbar-thumb:hover {
  background-color: #888888; /* Darkens slightly on hover */
}