.d-none {
    display: none;
}

.overlay {
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    height: 100vh;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    top: 0;
    left: 0;
    z-index: 1000;
}

.overlay_content {

    position: fixed;
    top: 0;
    height: 100vh;
    max-width: 100%;
    padding-bottom: 80px;
    justify-content: center;
    align-items: center;
    display:flex;
    flex-direction: column;
    z-index: 10000;
}

.profile_informationsheet {
    width: 400px;
    border-radius: 8px;
    padding: 20px;
}

.pokemon_name {
    font-size: 20px;
}

.profile_buttons {
    font-family: 'Kanit';
    font-weight: bold;
    color: white;
    background-color: transparent;
    border: none;
    transition: font-size 0.3s ease;
}

.profile_buttons:hover {
    cursor: pointer;
    font-size: 1.1rem;
}

.profile_buttons.active {
    transform: scale(1.5);
  }  

.navigation {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #5d52bb;
    padding: 10px;
    border-radius: 20px;
    margin-top: 20px;
}

h2 {
    text-align: center;
}

.td_margin {
    padding-right: 40px;
    font-weight: bold;
}

.fontsize_14 {
    font-size: 14px;
}

.capitalize {
    text-transform: capitalize;
}

.stat-bar-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
  }
  
  .stat-label {
    width: 80px;
    color: black;
    font-size: 14px;
    font-weight: bold;
  }
  
  .stat-bar {
    flex: 1;
    height: 20px;
    background-color: #eee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
  }
  
  .stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #aec2f5, #5d52bb);
    width: 0;
    transition: width 0.5s ease;
  }
  
  .stat-value {
    width: 30px;
    text-align: right;
    font-size: 14px;
    color: black;
  }
  
  .text_align_center {
    text-align: center;
  }

  .damage_title {
    font-weight: bold;
    font-size: 14px;
  }

  .damage_info {
    font-size: 14px;
  }

  .preview_btn {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 10px;
    padding-top: 10px;
    border-radius: 80px;
    font-weight: bold;
    font-size: 18px;
    color: #5d52bb;
    border-color: #5d52bb;
  }

  .preview_btn:hover {
    transform: scale(1.1);
    cursor: pointer;
  }

  .next_btn {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 10px;
    padding-top: 10px;
    border-radius: 80px;
    font-weight: bold;
    font-size: 18px;
    color: #5d52bb;
    border-color: #5d52bb;
  }

  .next_btn:hover {
    transform: scale(1.1);
    cursor: pointer;
  }

  .slide_buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
  }

