.yt-input-wrapper {
  display: flex;
  flex: 1;
  align-items: center;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-radius: 14px 0 0 14px;
  overflow: hidden;
}

.yt-input-wrapper input {
  flex: 1;
  padding: 0 10px;
  font-size: 16px;
  border: none;
  outline: none;
  height: 54px;
}

.yt-wrapper button {
  padding: 12px 26px;
  font-size: 16px;
  border: none;
  background: linear-gradient(#3b82f6, #2563eb);
  color: #fff;
  cursor: pointer;
  height: 54px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.yt-wrapper button:active {
    background: linear-gradient(#307cf6, #1557e7);
}

#yt-thumb {
  max-width: 100%;
  border-radius: 10px;
}

.yt-wrapper {
    display: flex;
    flex-direction: row;
    border-radius: 14px;
}

.yt-wrapper button {
    border-radius: 0 14px 14px 0;
}

/* Mobile fixes */
@media (max-width: 640px) {
  .yt-input-wrapper {
    border-radius: 14px;
  }

  .yt-input-wrapper input {
    font-size: 14px;
    flex: 1;
  }

  .yt-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .yt-wrapper button {
    border-radius: 14px;
  }
}
