.sgpt-rating-headline {
  font-size: 1.2rem;
  font-weight: bold;
}

.sgpt-notification-circle {
  color: #0b6485;
  border-color: #0b6485;
  margin: 15px 0 0 -6px;
}

.cke_button__starhuntergpt-formulate_label,
.cke_button__starhuntergpt-summarize_label,
.cke_button__starhuntergpt-rephrase_label,
.cke_button__starhuntergpt-config_label {
  display: inline;
}

.fad.fa-starhunter-gpt::before {
  background-color: currentColor;
  --icon-svg: url(/modules/StarhunterGPT/images/icons/fad-starhunter-gpt-a.svg);
}
.fad.fa-starhunter-gpt::after {
  background-color: currentColor;
  --icon-svg: url(/modules/StarhunterGPT/images/icons/fad-starhunter-gpt-b.svg);
}

:root {
  --gradient-ai: linear-gradient(75deg, hwb(207deg 14% 6%), hwb(272deg 14% 6%));
}

.sgpt-colored {
  background: var(--gradient-ai);
  background-clip: text;
  color: transparent !important;
  font-weight: 900;
  transition: background-position 0.3s ease-in-out;
  filter: brightness(1);
  transition-delay: color 0.2s;
}
.sgpt-colored.icon:after {
  content: "";
  position: absolute;
  height: 0;
  aspect-ratio: 1;
  margin-top: 25%;
  margin-left: -25%;
  z-index: -1;
  border-radius: 10%;
  background: var(--gradient-ai);
  background-size: 150%;
  background-position-x: 0;
  rotate: 0deg;
  transition: 0.3s ease, rotate 1.5s ease, background-position 0.7s ease;
}
.sgpt-colored:hover.icon {
  background: none;
  transition: background-position 0.7s ease-in-out;
  background-clip: unset;
  color: white !important;
}
.sgpt-colored:hover.icon:after {
  background-position-x: 50%;
  height: calc(100% + 1rem);
  margin-top: -0.5rem;
  margin-left: calc(-50% - 0.5rem);
  z-index: -1;
  border-radius: 50%;
  rotate: 180deg;
}

.gptWholeContainer {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  width: 100%;
  margin: 25px 10px;
  border: red;
  border-radius: 5px;
  background: white;
}
.gptWholeContainer .agbSpan {
  font-weight: bold;
  cursor: pointer;
  text-decoration: underline;
}
.gptWholeContainer .gptChatContainer {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
}
.gptWholeContainer .gptChatContainer ::-webkit-scrollbar {
  width: 6px;
}
.gptWholeContainer .gptChatContainer ::-webkit-scrollbar-track {
  background: #ddd;
}
.gptWholeContainer .gptChatContainer ::-webkit-scrollbar-thumb {
  background: #bdbdbd;
}
.gptWholeContainer .msg {
  display: flex;
  align-items: flex-end;
  margin-bottom: 14px;
}
.gptWholeContainer .msg-info-name {
  margin-right: 10px;
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 1.1em;
}
.gptWholeContainer .msg-info-name:empty {
  display: none;
}
.gptWholeContainer .msg-bubble {
  max-width: 550px;
  padding: 15px;
  border-radius: 15px;
  background: lightblue;
}
.gptWholeContainer ul {
  list-style-type: disc;
  margin-left: 20px;
}
.gptWholeContainer .right-msg {
  flex-direction: row-reverse;
}
.gptWholeContainer .msg-text {
  font-size: 15px;
}
.gptWholeContainer div#wave {
  position: relative;
  text-align: start;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.gptWholeContainer div#wave .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-right: -1px;
  background: #303131;
  animation: wave 0.6s linear infinite;
}
.gptWholeContainer div#wave .dot:nth-child(2) {
  animation-delay: -0.5s;
}
.gptWholeContainer div#wave .dot:nth-child(3) {
  animation-delay: -0.3s;
}
@keyframes wave {
  0%, 60%, 100% {
    transform: initial;
  }
  30% {
    transform: translateY(-3px);
  }
}
.gptWholeContainer .chatButton {
  background: transparent;
  border: 1px solid black;
  margin-top: 10px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 10px;
  padding: 4px 10px;
}
.gptWholeContainer .right-msg .msg-bubble {
  background: darkgrey;
  color: #fff;
}
.gptWholeContainer .left-msg:has(+ .left-msg) {
  margin-block-end: 0.25rem;
}
.gptWholeContainer .left-msg:has(+ .left-msg) .msg-bubble {
  border-bottom-left-radius: 0.25rem;
}
.gptWholeContainer .left-msg:has(+ .left-msg) + .left-msg .msg-bubble {
  border-top-left-radius: 0.25rem;
}
.gptWholeContainer .right-msg:has(+ .right-msg) {
  margin-block-end: 0.25rem;
}
.gptWholeContainer .right-msg:has(+ .right-msg) .msg-bubble {
  border-bottom-right-radius: 0.25rem;
}
.gptWholeContainer .right-msg:has(+ .right-msg) + .right-msg .msg-bubble {
  border-top-right-radius: 0.25rem;
}

.gptRatingContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem 0 0 0;
}
.gptRatingContainer .gptRatingButton {
  font-size: 35px;
  margin: 10px 5px 10px;
  transition: ease-in-out 0.15s;
  cursor: pointer;
  color: gray;
}
.gptRatingContainer .gptRatingTextArea {
  width: 84%;
  height: 4rem;
  padding: 0.6rem;
  margin: 1rem 0 0 0;
  border-radius: 15px;
}
.gptRatingContainer .gptSingleRating {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.gptRatingContainer .ratingQuestion {
  width: 60%;
  font-size: 0.9rem;
}

.result-state {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}
.result-state.state-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.result-state.state-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.sgpt-candidate-sync_current-career-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.sgpt-candidate-sync_current-career-table th, .sgpt-candidate-sync_current-career-table td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.sgpt-candidate-sync_current-career-table th {
  background-color: #f5f5f5;
}
.sgpt-candidate-sync_current-career-table s {
  color: #aa3434;
}
.sgpt-candidate-sync_current-career-table .overwrite-data {
  color: #c99700;
}
.sgpt-candidate-sync_current-career-table .create-new-data,
.sgpt-candidate-sync_current-career-table .new-data {
  color: #0e5f0e;
}

:root {
  --metallic-rainbow: linear-gradient(80deg, #83a4d4, #93c3c5, #b993d6, #8ca6db, #52a0aa, #61b6c9, #2193b0, #83a4d4, #93c3c5, #b993d6, #8ca6db);
}

/*# sourceMappingURL=index.css.map */
