.error{
    color: red;
    font-weight: 700;
}

/* store seçimi popup*/

#storePopup {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    display: none;
  }
  
  .store-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    min-width: 80%;
    max-height: 80%;
    overflow-y: auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  }
  
  .store-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    min-width: 50%;
    max-height: 80%;
    overflow-y: auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  }
  
  .store-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .store-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .store-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    border: 1px solid #ddd;
    padding: 10px;
    margin: 5px;
    border-radius: 10px;
    transition: transform 0.3s, background-color 0.3s;
    width: 120px;
  }
  
  .store-option:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
  }
  
  .store-option.selected {
    background-color: #f0f0f0;
    transform: scale(1.1);
  }
  
  .store-avatar {
    width: 80px;
    height: 80px;
    background-color: #ddd;
    border-radius: 50%;
    margin-bottom: 10px;
    overflow: hidden;
  }
  
  .store-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  
  .store-name {
    text-align: center;
  }
  
  #selectStoreButton {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #e50914;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  #selectStoreButton:hover {
    background-color: #b20710;
  }

  /*table tbody tr td {
    text-transform: capitalize!important;
}*/

#verificationModal{
  z-index: 9999;
}

.swal2-container{
  z-index: 99999;
}

.tooltip-btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

.tooltip-btn .tooltip-text {
  visibility: hidden;
  width: 140px;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 4px;
  position: absolute;
  z-index: 999;
  bottom: 130%; /* Butonun üstüne çıksın */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.tooltip-btn:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
