
.writerIconLarge {
    width: 100px;
    height: 100px;
    margin-top: 10px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
    transition: transform 0.2s ease;
}

.writerIconSmall {
    width: 50px;
    height: 50px;
    margin-top: 10px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
    transition: transform 0.2s ease;
}


.writerIconFallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #007bff; /* SNS風ブルー */
    color: white;
    font-size: 150%;
    font-weight: bold;
    user-select: none;
}

.writerIconLargeFallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #007bff; /* SNS風ブルー */
    color: white;
    font-size: 500%;
    font-weight: bold;
    user-select: none;
}

.writer-icon-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.gl-loading{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  display: grid;
  place-items: center;
  z-index: 9999;
  pointer-events: all;
}
.gl-loading__box{
  background: #fff;
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  display: grid;
  gap: 10px;
  text-align: center;
  min-width: 280px;
}
.gl-loading__spinner{
  width: 28px;
  height: 28px;
  border: 3px solid #ddd;
  border-top-color: #555;
  border-radius: 50%;
  animation: gl-spin 0.9s linear infinite;
  margin: 0 auto;
}
@keyframes gl-spin { to { transform: rotate(360deg); } }
