body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
}

.golf-container {   
    display: flex;
}

#heatmap {
    display: flex;
    flex-direction: column;
    width: 100%; /* Take the full width of the parent */
    overflow-x: auto; /* Enable horizontal scrolling */
    overflow-y: hidden; /* Prevent vertical scrolling */
    padding: 8px 8px 0px 8px;
}

#heatmap-logos {
    display: flex;
    flex-direction: column;
    background-color: white;
    width: 28px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.tour-logo {
    width: 26px; /* Adjust as needed */
    height: 26px; /* Adjust as needed */
}

.golf-logo-row {
    display: grid;
    height: 26px;
}

.golf-row {
    display: grid;
    grid-template-columns: auto repeat(52, 1fr);
    height: 26px;
}

.golf-cell-wrap {
    display: flex;
    width: auto;
    flex-direction: column;
    min-width: 10px;
    margin: 1px; 
}

.golf-cell {
    position: relative;
    align-items: center;
    width: 100%;
    border-radius: 3px;
    height: 100%;
    box-sizing: border-box;
}

.half-cell-bottom {
    margin-top: 1px;
}
  


.golf-cell.has-data:hover {
    border: 2px solid #000 !important; /* Change border color on hover */
}

.cell-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Ensure it's above other content */
    /* Additional styling as needed */
  }

.tour-info {
    display: flex;
    align-items: center;
    width: 120px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500; /* For bold text */
    

}



.card-place {
    font-style: italic;
}

.card-title {
    font-weight: 700;
}

.tooltip-card {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    position: absolute;
    z-index: 100;
    display: none;
    margin: 8px;
    padding: 8px;
    line-height: 16px;
    border-radius: 4px;
    border: solid 1px black;
    width: auto;
}

.tooltip-link {
    display: block; /* Make it a block element to fill the tooltip */
    color: inherit; /* Keep the text color consistent */
    text-decoration: none; /* Remove underline from links */
    /* Any other styling to make it consistent with the tooltip */
  }

#overlay {
    position: fixed; /* Fixed position */
    top: 0;
    left: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0, 0, 0, 0); /* Transparent background */
    z-index: 99; /* High z-index, but lower than the tooltip */
    display: none; /* Hidden by default */
  }

#heatmap, .tooltip-card  {
    background-color: #ffffff;
}
