.modal-title-lg {
  font-size: 25px !important;
}



.scroll-sm::-webkit-scrollbar {
  width: 12px;
  /* Increase scrollbar width */
}

.scroll-sm::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* Optional: light gray background */
  border-radius: 6px;
}

.scroll-sm::-webkit-scrollbar-thumb {
  background: #888;
  /* Scrollbar thumb color */
  border-radius: 6px;
}

.scroll-sm::-webkit-scrollbar-thumb:hover {
  background: #555;
  /* Darker on hover */
}


.scroll-sm {
  scrollbar-width: auto;
  scrollbar-color: #888 #f1f1f1;
}


::placeholder {
  color: #dadfe4;
  /* Light gray, adjust as needed */
  opacity: 1;
  /* Ensures the color shows correctly */
}

button {
  position: relative;
}

.tooltip-text {
  visibility: hidden;
  width: 80px;
  background-color: gray;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  /* Position the tooltip above the button */
  left: 50%;
  margin-left: -30px;
  /* Use half of the width (60px) to center the tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

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

.airdrop-card {
  flex: 1;
  margin: 0 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  background-color: #fff;
}

.airdrop-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive styles */
@media (max-width: 768px) {
  .airdrop-card {
    flex: 1 1 100%;
    margin: 10px 0;
  }

  .airdrop-card-container {
    flex-direction: column;
    align-items: center;
  }
}

.file-card {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.75rem;
  position: relative;
  width: 10%;
}

.file-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.file-icon-img {
  width: 24px;
  height: 24px;
  color: #6b7280;
}

.file-name {
  flex: 1 1 auto;
  font-size: 1rem;
  color: #374151;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.remove-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #ef4444;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0;
  flex-shrink: 0;
}

.remove-button:hover {
  color: #dc2626;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .file-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem;
  }

  .file-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }

  .file-name {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    width: 100%;
  }

  .remove-button {
    position: static;
    margin-left: auto;
  }
}

@media (max-width: 480px) {
  .file-name {
    font-size: 0.85rem;
  }

  .file-icon-img {
    width: 20px;
    height: 20px;
  }

  .remove-button {
    width: 20px;
    height: 20px;
  }
}

.nft-border-radius {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.nft-card-overlay {
  position: relative;
}

.nft-card-overlay .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: rgba(0, 0, 0, 0.5);
  /* Semi-transparent dark background */
  backdrop-filter: blur(5px);
  /* Blur effect */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  /* Hidden by default */
  transition: opacity 0.3s ease;
  cursor: pointer;
  /* Smooth transition for hover */
}

.nft-card-overlay:hover .overlay {
  opacity: 1;
  /* Show overlay on hover */
}

.nft-card-overlay .overlay i {
  color: white;
  font-size: 2rem;
  /* Adjust icon size */
}