/* YouTube Embed Code Builder - Styling */
#yt-embed-tool {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 8px;
  margin-top: 40px;
  max-width: 700px;
  font-family: sans-serif;
  background: #f9f9f9;
}
#yt-embed-tool input[type="text"],
#yt-embed-tool input[type="number"] {
  padding: 8px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
  margin: 4px 0;
}
#yt-embed-tool label {
  display: block;
  margin: 4px 0;
  line-height: 1.4;
}
#yt-output textarea {
  font-family: monospace;
  padding: 10px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
}
#yt-output button {
  margin-top: 10px;
  padding: 10px 16px;
  background-color: #0073aa;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
  display: inline-flex;
  align-items: center;
}
#yt-output button:hover {
  background-color: #005d8f;
}
#yt-copy-btn.copied {
  background-color: #28a745 !important;
}
#yt-copy-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
#yt-output {
  margin-top: 20px;
}
#yt-preview {
  margin-bottom: 20px;
}
.yt-responsive-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 4px;
}
.yt-responsive-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 600px) {
  #yt-embed-tool {
    padding: 15px;
  }
  #yt-embed-tool input[type="text"],
  #yt-embed-tool input[type="number"] {
    width: 100%;
  }
}
