/* talent-bg-upload.css */
/* タレント背景画像アップロード用スタイル */

.talent-bg-upload-form {
  margin: 1em 0;
  padding: 1em;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 8px;
}

.talent-bg-upload-form label {
  display: block;
  margin-bottom: 0.5em;
  font-weight: bold;
}

.talent-bg-upload-form input[type="file"] {
  margin-bottom: 0.5em;
}

.talent-bg-upload-form small {
  display: block;
  margin-bottom: 0.3em;
  color: #666;
  font-size: 0.9em;
}

.talent-bg-upload-form small[style*="color:red"] {
  color: #dc2626 !important;
}

.talent-bg-upload-form input[type="submit"] {
  background-color: #ec4899;
  color: white;
  padding: 0.5em 1.5em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.2s;
}

.talent-bg-upload-form input[type="submit"]:hover {
  background-color: #d946ef;
}

.talent-bg-upload-preview {
  margin-top: 1em;
  padding: 1em;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 8px;
}

.talent-bg-upload-preview p {
  margin-bottom: 0.5em;
  font-weight: bold;
}

.talent-bg-upload-preview img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

