* {
    background-color: black;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: white;
  }
  
  body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
  }
  
  .cell {
    width: 15px;
    height: 15px;
    border-radius: 3px;
  }
  
  #heatmap {
    border-style: solid;
    border-width: 1px;
    display: flex;
    flex-wrap: wrap;
    width: 25%;
  }
  
  .main {
    margin-left: 5%;
    margin-right: 5%;
  }
  
  .main h1 {
    cursor: auto;
    margin: 0px;
    font-size: 5rem;
    padding: 0px;
    width: fit-content;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: aqua;
  }
  
  .main h1:hover {
    cursor: auto;
    color: aqua;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: aqua;
    transform: scale(1.05);
  }
  
  #add {
    position: fixed;
    background-color: rgb(213, 111, 111);
    bottom: 20px; /* distance from bottom */
    right: 20px;
    height: 100px;
    width: 100px;
    border-radius: 25px;
  }
  
  #add svg {
    background-color: transparent !important;
    color: black;
    width: 50px;
    height: auto;
    background-color: none;
    margin: 0px;
  }
  
  #add:hover {
    transform: scale(1.05);
  }
  
  #addPopup {
    width: 70%;
    position: fixed;
    background-color: rgb(0, 0, 0);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 300px;   /* or whatever fits your content */
    min-height: 200px;
    width: auto;
    height: auto;
    border-radius: 25px;
    font-family: Arial, sans-serif;
    margin: 0;
    z-index: 2000;
    padding: 32px 24px; /* add some padding for content */
    box-sizing: border-box;
  }
  
  #addPopup h1 {
    text-align: center;
    margin-bottom: 30px;
    color: white;
  }
  #addPopup .picker-section {
    text-align: center;
    margin-bottom: 30px;
  }
  #addPopup .color-picker {
    width: 80px;
    height: 80px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 20px;
  }
  #addPopup .current-color {
    font-size: 18px;
    margin: 10px 0;
    padding: 10px;
    background-color: #161616;
    border-radius: 4px;
  }
  #addPopup .colors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
  }
  #addPopup .color-item {
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
    background: white;
  }
  #addPopup .color-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
  }
  #addPopup .color-code {
    font-family: monospace;
    font-size: 14px;
    color: rgb(0, 0, 0);
  }
  #addPopup .clear-btn {
    background-color: rgb(41, 38, 38);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
  }
  #addPopup .clear-btn:hover {
    background-color: black;
  }
  
  #popupOverlay {
    display: none; /* hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5); /* translucent black */
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  #logsGrid {
    /* Use CSS Grid instead of flex */
    display: grid; /* Enable grid layout */
    grid-template-columns: repeat(3, 1fr); /* 3 columns per row */
    gap: 20px; /* Space between grid items (adjust as needed) */
    margin-top: 20px;
    padding: 20px 0; /* Optional: add vertical padding */
    /* Remove flex properties */
    margin-left: 10%;
    margin-right: 10%;
  }
  
  .item {
    background: black;
    border-radius: 8px;
    height: 300px;
    display: flex; /* Center content inside each grid cell */
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    font-weight: bold;
    /* Remove width and margin, grid handles spacing */
  }
  
  /*# sourceMappingURL=styles.css.map */
  