* {
    box-sizing: border-box;
    font-family: 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'sans-serif'
}

#tayori-ai-chatbot-app {
    z-index: 10000;
}

.page-header {
    margin-bottom: 0.5rem;
}

.required {
    color: var(--el-color-danger);
    margin-right: 4px;
}

.el-table .cell {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

label {
    margin-bottom: 0;
}

svg {
    vertical-align: baseline;
}

.w-fit-content {
    max-width: fit-content;
}

.el-radio.el-radio--large .el-radio__inner {
    width: 20px;
    height: 20px;
}

.el-form-item__content {
    display: block;
}

.tooltip-base-box {
    width: 600px;
}

.tooltip-base-box .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tooltip-base-box .center {
    justify-content: center;
}

.tooltip-base-box .box-item {
    width: 110px;
    margin-top: 10px;
}

.el-form-item__label {
    min-width: 120px;
}

.el-dialog {
    min-width: 500px;
    width: 80%;
}

.el-dialog .el-form-item__label {
    min-width: 30%;
}

.modal {
    max-width: 500px;
}

.el-alert__title {
    vertical-align: unset;
}

.page-title {
    font-size: 33px;
    display: inline-flex;
    align-items: center;
    margin-right: 30px;
}

@media (max-width: 768px) {
    .el-row {
        display: block;
    }

    .el-col {
        max-width: fit-content;
    }

    .el-form-item__label {
        width: auto;
        max-width: 100%;
        justify-content: flex-start;
    }

    .el-form-item {
        display: block;
    }
}

/** 文字起こし画面 css **/
.column-container {
    display: flex;
    flex-direction: column;
    padding: 12px;
  
    .row-item {
      padding: 10px;
    }
  
    .container {
      display: flex;
      flex-direction: column;
      padding: 12px;
      border: 1px solid #a6a6a6;
      border-radius: 8px;
      overflow-y: scroll;
      height: 100px;
  
      .message-row {
        margin-bottom: 10px;
      }
  
      .message-item {
        display: flex;
        align-items: center;
        justify-content: start;
  
        .message-bubble {
          border-radius: 10px;
          padding: 5px;
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }
  
        .time-stamp {
          font-size: 10px;
          padding: 3px;
        }
      }
    }
}
  