html, body {
  height: 100%;
}
.wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button_start {
    color: #ffffff;
    min-width: 120px;
    min-height: 30px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease-in-out 0s;
    padding: 10px;
  }
  .button_class {
    color: #ffffff;
    min-width: 120px;
    min-height: 30px;
    font-size: 14px;
    font-weight: 700;
    background: #fa896b;
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease-in-out 0s;
    cursor: pointer;
    outline: none;
    position: relative;
    padding: 10px;
    }
  
  .button_class::before {
    content: '';
    box-shadow: 0 0 60px rgba(185, 5, 5, 0.64);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s ease-in-out 0s;
  }
  .button_class:hover::before, .button_class:focus::before {
    opacity: 1;
  }
  .button_class::after {
    content: '';
    width: 30px; height: 30px;
    border-radius: 100%;
    border: 6px solid rgb(194, 22, 22);
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 1.5s infinite;
  }
  
  .button_class:hover::after, .button_class:focus::after {
    animation: none;
    display: none;
  }
  
  @keyframes ring {
    0% {
      width: 30px;
      height: 30px;
      opacity: 1;
    }
    100% {
      width: 200px;
      height: 200px;
      opacity: 0;
    }
  }
  .table-chart {
    border-collapse: collapse;
    margin-top: 20px;
    border: none;
    font-size: 10px;
    margin: auto;
}

.reg {
    text-align: right;
    padding-right: 5px;
}
.reg-duty{
    text-align: center;
}

.table-shower {
    border: 1.2px solid #e0e0e0;
    text-align: center;
    font-family: Arial, sans-serif;
}

.commit-cell-green {
    background-color: rgb(109, 223, 130);
}

.commit-cell-blue {
    background-color: rgb(156, 224, 243);
}

.commit-cell-grey {
    background-color: rgb(144, 158, 202);
}

.custom-heatmap-chart {
    font-size: 12px;
    height: 400px;
}

.text-indicator {
    text-align: center;
    margin-right: 80px;
}

.div-box {
    height: 12px;
    width: 12px;
    display: inline-block;
    border-radius: 4px;
}

.indicator-span {
    font-size: 13px
}

.renge {
    width: 20px;
}
.pointer {
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}
.pointer:hover {
/* Apply larger 3D effect on hover */
transform: translateY(-5px) translateZ(30px) rotateX(15deg) scale(1.5);
/* Add shadow for depth */
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.search-input {
margin-left: 600px;
}