.w200 {
    width: 200px;
}

.invalid-feedback {
    color: red;
}

.hide {
    display: none;
}

.cursor-pointer {
    cursor: pointer;
}

.clip-preview {
    margin: 3px;
    width: 300px;
    height: 169px;
}

#hashtags {
    display: flex;
    padding: 5px 2px;
}

.hashtag {
    color: black;
    background: lightgray;
    border: 1px solid gray;
    border-radius: 5px;
    padding: 5px;
    margin-right: 3px;
}

.delete-tag {
    cursor: pointer;
    padding: 3px;
}

.w1em {
    width: 1em;
}

.w15em {
    width: 1.5em;
}

.w2em {
    width: 2em;
}
.w3em {
    width: 3em;
}

.w80px {
    width: 80px;;
}

.i-block {
    display: inline-block;
}

.va-top {
    vertical-align: text-top;
}

.title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.delete-btn {
    background: red;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
}

/* スピナーのスタイル */
.spinner {
  border: 8px solid #f3f3f3;         /* 薄いグレー */
  border-top: 8px solid #3498db;     /* 青色 */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin: 100px auto;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ローディング画面中央寄せ */
#loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
