.temp-holder-selector-content {
  padding: 16px;
}

.temp-holder-selector-block-wrapper {
  border: 2px solid transparent;
  border-radius: 8px;
  height: 100%;
  transition: all 0.2s ease;

  &-active {
    border-color: var(--theme-color, #7f56d9);
    
    .temp-holder-selector-block {
      border-color: transparent;
    }
  }
}

.temp-holder-selector-block {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #eaecf0;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  height: 100%;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  transition: all 0.2s ease;

  &:hover {
    background-color: var(--Gray-50, #f9fafb);
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.15);
  }

  &-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
  }

  &-plus {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px dashed #d9d9d9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #999;
    background: #fafafa;
  }

  &-name {
    font-size: 14px;
    color: #333;
    word-break: break-all;
    line-height: 1.5;
    font-weight: bold;
  }
}
