#question-input {
    border-radius: 10px;
    background-color: #ffffff;
    transition: background-color 0.3s;
    color: #333;
    margin: 0px;
    outline: none;

    width: 100%;
    /* 设置宽度 */
    height: 100px;
    /* 设置高度 */
    padding: 10px;
    /* 设置内边距 */
    font-size: 16px;
    /* 设置字体大小 */
    border: 1px solid #ccc;
    /* 设置边框 */
    border-radius: 4px;
    /* 设置边框圆角 */
    resize: none;
    /* 允许用户仅垂直调整大小 */
    overflow-y: auto;
    /* 当内容超出高度时显示垂直滚动条 */

    position: relative;
    box-sizing: border-box;
}

#question-container {
    width: 75%;
    display: flex;
    margin: 0px auto;
    align-items: center;
    justify-items: center;

}

.inline-middle-text {
    float: left;
    text-align: center;
    line-height: 35px;
    margin: 5px;
}

.inline-middle-content {
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
    margin-bottom: 10px;
    width: 100%;
}

.Msg {
    display: block;
    width: 94%;
    height: auto;
    text-align: left;
    margin: 10px;
}

.Msg_markdown {
    border: #ddd solid 1px;
    border-radius: 5px;
    background-color: #f5f5f5;
    width: auto;
    display: block;
    padding: 10px;
    text-align: left;
    word-wrap: break-word;
}

.Msg_markdown-text {
    text-align: left;
}

.answer {
    float: left;
}

.ask {
    float: right;
}



.operation-Btn {
    height: 100% !important;
    cursor: pointer;
    margin: 5px !important;
    border: none;
    width: 100px;
    height: 50%;
    transition: 0.3s
}

#clean-button {
    background-color: #f9f9f9 !important;
    color: #666 !important;
    border: 1px solid #d4d4d4 !important;
}

.presentation-table {
    white-space: nowrap;
}

.prompts-Btn {
    color: #666;
    background-color: #f9f9f9;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    padding-left: 5px;
    padding-right: 5px;
    border: 1px solid #d4d4d4;
    margin: 5px;
}

.prompts-Btn:hover {
    filter: brightness(0.95);
}

.Info_container {
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.info_Context {
    color: #d4a57b;
    font-weight: bold;
}

/* 保存按钮样式 */
.save-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 5px 10px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 4px;
}

.save-button:hover {
    background: #45a049;
}

/* 删除按钮样式 */
.delete-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 5px 10px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 4px;
}

.delete-button:hover {
    background: #d32f2f;
}

/* 历史回答样式 */
.saved-answer {
    margin-top: 15px;
    border-left: 3px solid #4CAF50;
    padding-left: 10px;
}

.Checkbox_Border {
    border: #d4d4d4 solid 1px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    height: 35px;
    padding: 0px 10px;
    transition: 0.3s;
}

.Checkbox_Border:hover {
    background-color: #f5f5f5;
    cursor: pointer;
}

/* .Plot_container:hover {
    cursor: pointer;
    background-color: #f5f5f5;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
} */

.compare_img {
    width: auto;
    height: 250px;
}

.section-title {
    display: flex;
    align-items: center;
    text-align: center;
    color: #333;
    font-weight: 500;
    font-size: 18px;
    margin: 20px 0;
}

.section-title::before,
.section-title::after {
    content: '';
    flex: 1;
    border-top: 1px solid #ccc;
}

.section-title::before {
    margin-right: 15px;
}

.section-title::after {
    margin-left: 15px;
}

/* 整体容器，固定在左下角 */
.profile-container {
    float: left;
    width: 90%;
    margin: 0 5%;
    height: 50px;
    bottom: 20px;
    /* 距离底部间距 */
    left: 20px;
    /* 距离左侧间距 */
    z-index: 9999;
    /* 保证在其他内容上层 */
    background-color: transparent;
    border-radius: 5px;

    display: flex;
    align-items: center;
    /* 垂直方向居中 */
}

/* 头像按钮样式 */
.profile-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #d4a57b;
    /* 与你页面中类似的色调 */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: auto;
}

.profile-avatar:hover {
    filter: brightness(0.95);
}

/* 头像首字母样式 */
.avatar-initials {
    font-weight: bold;
}

/* 个人信息面板样式 */
.profile-panel {
    position: absolute;
    z-index: 9999;
    bottom: 105%;
    left: 0%;
    margin-left: 12.5%;
    width: 75%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: fadeInUp 0.3s ease;
    /* 展开动画 */
}

/* 面板展开动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 面板头部 */
.panel-header {
    background-color: #f8f9fa;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}

.panel-header h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

/* 面板内容 */
.panel-content {
    padding: 16px;
    color: #666;
}

.panel-content p {
    margin: 2px 0;
}

.panel-item {
    padding: 8px 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.panel-item:hover {
    background-color: #f5f5f5;
    filter: brightness(95%);
}

.btn-profile {
    background-color: #d4a57b;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.btn-profile:hover {
    background-color: #b5895e;
}

.open-btn {
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    background-color: #d4a57b;
    color: white;
    border: none;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.open-btn:hover {
    background-color: #b5895e;
}

.modal-overlay * {
    margin: 0px !important;
}

/* 模态框背景 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 模态框内容 */
.modal {
    background-color: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

/* 模态框头部 */
.modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    margin: 0;
    font-size: 20px;
    color: #1d2129;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #86909c;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #1d2129;
}

/* 模态框主体 */
.modal-body {
    padding: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #4e5969;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #d4a57b;
    box-shadow: 0 0 0 2px rgba(212, 165, 123, 0.2);
}

/* 模态框底部 */
.modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.modal-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cancel {
    background-color: #f2f3f5;
    color: #4e5969;
    border: none;
}

.btn-cancel:hover {
    background-color: #e5e6eb;
}

.btn-confirm {
    background-color: #d4a57b;
    color: white;
    border: none;
}

.btn-confirm:hover {
    background-color: #b5895e;
}

.smallBtn {
    padding: 2px 6px;
    font-size: 12px;
    margin-right: 5px;
    color: #ffffff;
    background-color: #d4a57b;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 5px;
}

#ClipboardBtn{
    background-color: #d4a57b;
    color: white;
    border: none;
    padding: 5px 10px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 4px;
    width: 200px;
    text-align: center;
}

/* 定位目标div下的表格，确保表格宽度铺满容器且列宽固定 */
#业务简况-叙事阶段 table {
  width: 100%; /* 表格宽度设为100%，让百分比列宽生效 */
  table-layout: fixed; /* 关键：固定表格布局，列宽严格按设置值生效，不随内容拉伸 */
  border-collapse: collapse; /* 可选：合并单元格边框，视觉更整洁 */
}

/* 为表格的每一列设置对应宽度（td/th都要覆盖，适配表头和内容行） */
#业务简况-叙事阶段 table td:nth-child(1),
#业务简况-叙事阶段 table th:nth-child(1) {
  width: 20%;
}

#业务简况-叙事阶段 table td:nth-child(2),
#业务简况-叙事阶段 table th:nth-child(2) {
  width: 10%;
}

#业务简况-叙事阶段 table td:nth-child(3),
#业务简况-叙事阶段 table th:nth-child(3) {
  width: 60%;
}

#业务简况-叙事阶段 table td:nth-child(4),
#业务简况-叙事阶段 table th:nth-child(4) {
  width: 10%;
}

#业务简况-叙事阶段 table td,
#业务简况-叙事阶段 table th {
  border: 1px solid #ccc; /* 内边框：1px灰色实线，可自定义颜色/粗细 */
  padding: 8px 12px; /* 单元格内边距，让内容和边框有间距，更美观 */
  word-wrap: break-word; /* 长文本换行，防止撑破列宽 */
  box-sizing: border-box; /* 确保边框和内边距不超出设置的列宽 */
}


.field-clickable:hover {
    cursor: pointer;
  color: #1d4ed8;
  text-decoration: underline    ;
}

.bible-auth-modal,
.bible-profile-modal,
.bible-account-modal,
.bible-admin-modal {
  border-radius: 8px !important;
  color: #3f332b;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.bible-profile-modal .swal2-close,
.bible-auth-modal .swal2-close,
.bible-account-modal .swal2-close,
.bible-admin-modal .swal2-close {
  width: 34px;
  height: 34px;
  right: 18px;
  top: 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #555;
  font-size: 24px;
  line-height: 32px;
  box-shadow: none;
  transition: color .15s;
}

.bible-profile-modal .swal2-close:hover,
.bible-auth-modal .swal2-close:hover,
.bible-account-modal .swal2-close:hover,
.bible-admin-modal .swal2-close:hover {
  background: transparent !important;
  border-color: transparent !important;
  color: #222;
  box-shadow: none !important;
}

.bible-auth-modal {
  width: min(460px, calc(100vw - 32px)) !important;
}

.bible-auth-modal .swal2-actions {
  gap: 14px;
}

.bible-auth-stack {
  display: grid;
  gap: 12px;
  text-align: left;
}

.bible-auth-stack label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6a5a4e;
  font-size: 13px;
}

.bible-auth-stack label > span {
  flex: 0 0 84px;
  text-align: right;
}

.bible-auth-stack label > input,
.bible-auth-stack label > .bible-auth-code-row {
  flex: 0 0 292px;
  min-width: 0;
}

.bible-auth-stack .bible-auth-check {
  justify-content: flex-start;
  gap: 6px;
}

.bible-auth-stack .bible-auth-check > span {
  flex: 0 0 auto;
  text-align: left;
  white-space: nowrap;
}

.bible-profile-card label {
  display: grid;
  gap: 6px;
  color: #6a5a4e;
  font-size: 13px;
}

.bible-auth-stack input,
.bible-feedback-stack input,
.bible-feedback-stack textarea,
.bible-profile-card input,
.bible-admin-toolbar input,
.bible-admin-table-wrap select {
  width: 100%;
  min-height: 38px;
  border: 1px solid #e1d6cd;
  border-radius: 10px;
  padding: 8px 10px;
  box-sizing: border-box;
  background: #fff;
  color: #3f332b;
  outline: none;
}

.bible-auth-stack input:focus,
.bible-feedback-stack input:focus,
.bible-feedback-stack textarea:focus,
.bible-profile-card input:focus,
.bible-admin-toolbar input:focus,
.bible-admin-table-wrap select:focus {
  border-color: #d4a57b;
  box-shadow: 0 0 0 3px rgba(212, 165, 123, 0.18);
}

.bible-auth-code-row {
  display: grid;
  grid-template-columns: 1fr 88px;
  gap: 8px;
}

.bible-auth-code-row button,
.bible-auth-primary,
.bible-profile-primary,
.bible-admin-toolbar button,
.bible-admin-pager button {
  border: 0;
  border-radius: 10px;
  background: #d4a57b;
  color: #fff;
  min-height: 38px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 600;
}

.bible-auth-code-row button:hover,
.bible-auth-primary:hover,
.bible-profile-primary:hover,
.bible-admin-toolbar button:hover,
.bible-admin-pager button:hover {
  filter: brightness(0.96);
}

.bible-auth-secondary {
  border: 1px solid #e1d6cd;
  border-radius: 10px;
  background: #fff;
  color: #6a5a4e;
  min-height: 38px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 600;
}

.bible-auth-danger {
  border: 0;
  border-radius: 10px;
  background: #c94d3f;
  color: #fff;
  min-height: 38px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 600;
}

.bible-auth-check {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 7px;
  padding-left: 90px;
}

.bible-auth-check input {
  flex: 0 0 auto !important;
  width: 39px !important;
  min-height: 20px;
}

.bible-feedback-modal {
  width: min(94vw, 560px) !important;
}

.bible-feedback-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 88%;
  min-width: 85%;
  margin: 0 auto;
  text-align: left;
}

.bible-feedback-stack label {
  display: flex;
  width: 100%;
  gap: 12px;
  align-items: flex-start;
  color: #6a5a4e;
  font-size: 13px;
}

.bible-feedback-stack label > span {
  flex: 0 0 72px;
  line-height: 38px;
  text-align: right;
  white-space: nowrap;
}

.bible-feedback-stack input,
.bible-feedback-stack textarea {
  flex: 1 1 auto;
  min-width: 0;
}

.bible-feedback-stack textarea {
  min-height: 132px;
  resize: vertical;
  font-family: inherit;
}

.bible-feedback-modal .swal2-actions {
  gap: 14px;
}

.bible-feedback-modal .bible-auth-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.bible-auth-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
}

.bible-auth-links a {
  color: #9d6f49;
  text-decoration: none;
}

.bible-auth-danger-text {
  margin: 0;
  color: #9d4a41;
  line-height: 1.6;
}

.bible-profile-shell {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.bible-profile-title {
  font-size: 18px;
  font-weight: 700;
  color: #2f2f2f;
  line-height: 34px;
}

.bible-profile-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}

.bible-profile-hero {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.bible-profile-cell {
  box-sizing: border-box;
  min-height: 72px;
}

.bible-profile-hero img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid #d8d8d8;
}

.bible-profile-name {
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #3f332b;
}

.bible-profile-email {
  margin-top: 3px;
  color: #777;
  font-size: 13px;
}

.bible-profile-stat {
  flex: 1 1 120px;
  padding: 10px;
  border: 1px solid #dedede;
  border-radius: 6px;
  background: #fafafa;
}

.bible-profile-stat span {
  display: block;
  color: #777;
  font-size: 12px;
}

.bible-profile-stat strong {
  display: block;
  margin-top: 4px;
  color: #3f332b;
  font-size: 18px;
}

.bible-profile-card {
  display: flex;
  flex: 1 1 100%;
  gap: 10px;
  align-items: end;
}

.bible-profile-setting {
  display: flex;
  flex: 1 1 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 0;
}

.bible-profile-setting label,
.bible-profile-setting span {
  display: block;
}

.bible-profile-setting label {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
}

.bible-profile-setting .bible-profile-setting-label {
  color: #3f332b;
  font-weight: 600;
}

.bible-profile-setting .bible-profile-setting-help {
  margin-top: 3px;
  color: #777;
  font-size: 12px;
}

.bible-profile-setting .check-switch {
  flex: 0 0 auto;
}

.bible-profile-hero {
  flex: 2 1 260px;
}

.bible-profile-card label {
  flex: 0 1 340px;
  max-width: 340px;
}

.bible-profile-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-top: 2px;
}

.bible-profile-action {
  border: 1px solid #e1d6cd;
  border-radius: 10px;
  background: #fff;
  color: #5f5147;
  min-height: 38px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 600;
}

.bible-profile-action:hover {
  background: #fbf8f5;
  border-color: #d4a57b;
}

.bible-profile-action.danger {
  color: #b9473d;
}

.bible-member-name {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  max-width: 100%;
  min-width: 0;
}

.bible-member-name.advanced {
  color: #d7a318;
}

.bible-member-name.vip {
  color: #d32332;
}

.bible-member-name.special-vip {
  color: #8d36c5;
}

.bible-member-gem {
  display: inline-block;
  flex: 0 0 auto;
  font-size: .92em;
  line-height: 1;
  animation: bible-gem-shine 1.35s ease-in-out infinite;
}

.bible-member-name.advanced .bible-member-gem {
  color: #f5c542;
}

.bible-member-name.vip .bible-member-gem {
  color: #e21f35;
}

.bible-member-name.special-vip .bible-member-gem {
  color: #9b3fe0;
}

@keyframes bible-gem-shine {
  0%, 100% {
    opacity: .72;
    transform: scale(.92);
    filter: brightness(.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
    filter: brightness(1.55);
  }
}

.bible-account-list {
  display: grid;
  gap: 8px;
  margin: 0 4px;
}

.bible-account-row-wrap {
  position: relative;
  width: 100%;
}

.bible-account-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 62px;
  border: 1px solid #eadfd5;
  border-radius: 12px;
  background: #fff;
  padding: 10px 44px 10px 10px;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
}

.bible-account-row:hover {
  background: #fbf8f5;
  border-color: #d4a57b;
}

.bible-account-remove {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  color: #666;
  width: 30px;
  height: 30px;
  min-height: 30px;
  cursor: pointer;
  font-size: 20px;
  line-height: 26px;
  padding: 0;
}

.bible-account-remove:hover {
  background: #f3f3f3;
  border-color: #cfcfcf;
}

.bible-account-row img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.bible-account-add-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px dashed #d4a57b;
  border-radius: 50%;
  color: #9d6f49;
  font-size: 22px;
  line-height: 1;
}

.bible-account-row strong,
.bible-account-row small {
  display: block;
}

.bible-account-row strong {
  color: #3f332b;
}

.bible-account-row small,
.bible-account-row em {
  color: #9a7a60;
  font-size: 12px;
  font-style: normal;
}

.bible-account-row span {
  min-width: 0;
}

.bible-account-row strong,
.bible-account-row small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bible-empty-state {
  padding: 20px;
  color: #9a7a60;
  text-align: center;
}

.bible-admin-shell {
  display: grid;
  gap: 12px;
}

.bible-admin-toolbar {
  display: grid;
  grid-template-columns: 1fr 86px;
  gap: 8px;
}

.bible-admin-table-wrap {
  max-height: 420px;
  overflow: auto;
  border: 1px solid #eadfd5;
  border-radius: 12px;
}

.bible-admin-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.bible-admin-table-wrap th,
.bible-admin-table-wrap td {
  padding: 9px 10px;
  border-bottom: 1px solid #f0e7df;
  text-align: left;
}

.bible-admin-table-wrap th {
  background: #fbf8f5;
  color: #6a5a4e;
  position: sticky;
  top: 0;
}

.bible-admin-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #7b6757;
}

@media (max-width: 768px) {
  .bible-auth-modal,
  .bible-profile-modal,
  .bible-account-modal,
  .bible-admin-modal {
    width: calc(100vw - 22px) !important;
    max-width: calc(100vw - 22px) !important;
  }

  .bible-profile-card,
  .bible-admin-toolbar {
    flex-direction: column;
  }

  .bible-auth-stack label {
    gap: 8px;
  }

  .bible-auth-stack label > span {
    flex-basis: 84px;
  }

  .bible-auth-stack label > input,
  .bible-auth-stack label > .bible-auth-code-row {
    flex: 1 1 auto;
  }

  .bible-auth-check {
    padding-left: 80px;
  }

  .bible-feedback-stack label {
    flex-direction: column;
    gap: 6px;
  }

  .bible-feedback-stack label > span {
    flex: none;
    line-height: 1.4;
    text-align: left;
  }

  .bible-profile-actions {
    justify-content: stretch;
  }

  .bible-profile-actions button {
    flex: 1 1 auto;
  }
}
