/* Keyframes for pulsing effect */
@keyframes pulseGreenToYellow {
    0% { fill: green; }
    100% { fill: gold; }
}

@keyframes pulseYellowToRed {
    0% { fill: green; }
    100% { fill: red; }
}

@keyframes pulseBlueToPurple {
    0% { fill: blue; }
    100% { fill: gold; }
}

@keyframes pulsePurpleToRed {
    0% { fill: blue; }
    100% { fill: red; }
}

/* Apply pulsing effect */
.pulse-green-yellow {
    animation: pulseGreenToYellow 1s infinite;
    animation-direction: alternate;
}

.pulse-yellow-red {
    animation: pulseYellowToRed 1s infinite;
    animation-direction: alternate;
}

.pulse-blue-purple {
    animation: pulseBlueToPurple 1s infinite;
    animation-direction: alternate;
}

.pulse-purple-red {
    animation: pulsePurpleToRed 1s infinite;
    animation-direction: alternate;
}


/* table-tracker.css */
.menu-option {
    color: white!important;
}

/* Styles for the elapsed time container */
#elapsed-time-container {
    margin: 20px;
}

.elapsed-time-item {
    margin-bottom: 10px;
    font-size: 14px;
}

html, body {
    overflow: hidden;
    height: 100%;
}
    #flyout-menu {
      position: absolute;
      display: none;
      background-color: #000000b5;
      padding: 0;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      margin-left: 6px;
      backdrop-filter: blur(5px);
      font-family: sans-serif;
      color: white;
    }

    .menu-option {
      cursor: pointer;
      padding: 5px;
      margin: 5px 0;
    }

    .menu-option:hover {
      background-color: black;
    }

    .gray {
      fill: gray!important;
    }

    .green {
      fill: green!important;
    }

    .blue {
      fill: blue!important;
    }
    
    .svg-container {
      height: 100vh;
    }
    

    #table-tracker {
      margin-top: 20px;
      font-family: sans-serif;
    }

    #table-tracker div {
      margin-bottom: 10px;
    }
      
      .table{
          cursor: pointer;
          transition: 1s ease;
      }
  
    #_table-numbers,
    #_table-numbers g text{
pointer-events: none!important;
        -webkit-user-select: none!important; /* Safari */
  -ms-user-select: none!important; /* IE 10 and IE 11 */
  user-select: none!important; /* Standard syntax */
    }

.svg-container {
    height: 96vh;
    width: 100%; /* Make sure the width adjusts to the container */
}

@media only screen and (max-width: 768px) {
    /* Adjust for tablets */
    .svg-container {
        height: 80vh;
    }
}

@media only screen and (max-width: 480px) {
    /* Adjust for mobile devices */
    .svg-container {
        height: 75vh;
        position: absolute;
    bottom: 3%;
    }
}

main {
    margin-top: 0px;
}

.hidden{
    display:none;
}

.cfla-buttons {
    display: flex;
    width: fit-content;
    position: absolute;
    padding-top: 40px;
}

.cfla-buttons button {
    background: #e0e0e0;
    color: #747474;
    padding: 10px 12px;
    border-radius: 6px;
    border-width: 0px;
    cursor: pointer;
    letter-spacing: 1px;
    text-align: left;
    margin-right: 5px;
}
.wp-block-group {
    padding: 0px !important;
}

.wp-block-group.cfla-buttons.is-layout-flow.wp-block-group-is-layout-flow {
    padding: 15px !important;
}

:where(.wp-site-blocks *:focus) {
    outline-width: 0px;
    outline-style: solid;
}

#_table-numbers{
    opacity:1;
    transition: .25s ease;
}