@charset "UTF-8";
.advisor-feedback-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
  background: #EDF1F7;
  min-height: calc(100vh - 120px);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.advisor-feedback-container .advisor-feedback-container-inner {
  width: 420px;
  margin: 70px auto;
}

.error-message {
  font-size: 12px;
  position: relative;
  top: 6px;
  color: #d50303;
  display: none;
}
.error-message.show-error {
  display: block;
}

.back-link {
  display: inline-flex;
  align-items: center;
  color: #0065FF;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 500;
}
.back-link:before {
  content: "←";
  margin-right: 8px;
  font-size: 18px;
}
.back-link:hover {
  text-decoration: underline;
}

.advisor-feedback-title {
  font-size: 24px;
  font-weight: 600;
  color: #253858;
  margin-bottom: 16px;
}

.mobile-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.mobile-label {
  color: #666;
  font-size: 14px;
}

.mobile-number {
  color: #253858;
  font-weight: 500;
}

.change-link {
  color: #0065FF;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.change-link:before {
  content: "✎";
  margin-right: 4px;
}
.change-link:hover {
  text-decoration: underline;
}

.feedback-card {
  background: white;
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #253858;
  cursor: pointer;
}
.feedback-card:after {
  content: "›";
  font-size: 24px;
  color: #999;
  font-weight: 300;
}

.feedback-card-text {
  font-size: 16px;
  font-weight: 500;
  color: #253858;
}

@media (max-width: 480px) {
  .advisor-feedback-container {
    padding: 16px;
  }
  .advisor-feedback-title {
    font-size: 20px;
  }
  .feedback-card {
    padding: 16px 18px;
  }
  .feedback-card-text {
    font-size: 15px;
  }
}
@media (max-width: 375px) {
  .advisor-feedback-container {
    padding: 12px;
  }
  .mobile-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.feedback-form-container {
  background: white;
  border-radius: 8px;
  padding-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.form-section-header {
  margin-bottom: 20px;
}
.form-section-header.bg {
  background: rgba(234, 230, 255, 0.3);
  padding: 16px;
}

.form-group-wrapper {
  padding: 0px 24px;
}

.form-section-title {
  font-size: 16px;
  font-weight: 600;
  color: #253858;
  margin: 0 0 8px 0;
}

.form-section-description {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  color: #253858;
  background: white;
  border: 1px solid #E0E0E0;
  border-radius: 6px;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.form-input::-moz-placeholder {
  color: #B3BAC5;
}
.form-input::placeholder {
  color: #B3BAC5;
}
.form-input:focus {
  border-color: #0065FF;
  box-shadow: 0 0 0 3px rgba(0, 101, 255, 0.1);
}
.form-input:hover {
  border-color: #C0C0C0;
}

.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  color: #253858;
  background: #F5F6F7;
  border: 1px solid #E0E0E0;
  border-radius: 6px;
  outline: none;
  resize: vertical;
  min-height: 120px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.form-textarea::-moz-placeholder {
  color: #B3BAC5;
}
.form-textarea::placeholder {
  color: #B3BAC5;
}
.form-textarea:focus {
  border-color: #0065FF;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 101, 255, 0.1);
}
.form-textarea:hover {
  border-color: #C0C0C0;
}

.file-upload-container {
  border: 2px dashed #D0D5DD;
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #FAFBFC;
  margin-bottom: 16px;
}
.file-upload-container:hover {
  border-color: #0065FF;
  background: #F8FAFF;
}
.file-upload-container.drag-over {
  border-color: #0065FF;
  background: #EBF4FF;
}
.file-upload-container.has-file {
  border-color: #10B981;
  background: #F0FDF4;
  padding: 20px;
  display: none;
}

.file-upload-icon {
  margin-bottom: 12px;
  pointer-events: none;
}
.file-upload-icon svg {
  width: 48px;
  height: 48px;
  pointer-events: none;
}

.file-upload-text {
  font-size: 14px;
  color: #666;
  margin: 0;
  pointer-events: none;
}

.file-name {
  font-size: 14px;
  color: #0065FF;
  margin: 8px 0 0 0;
  font-weight: 500;
}

.file-preview-container {
  display: none;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.file-preview-container.has-files {
  display: flex;
}

.file-preview-item {
  position: relative;
  width: 80px;
  height: 100px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  background: white;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.file-preview-item .file-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}
.file-preview-item .file-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.file-preview-item .file-preview-name {
  font-size: 11px;
  color: #666;
  text-align: center;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.2;
}
.file-preview-item .remove-file {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: #EF4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.2s ease;
}
.file-preview-item .remove-file:hover {
  background: #DC2626;
  transform: scale(1.1);
}

.choose-upload-button {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #0065FF;
  background: white;
  border: 1px solid #E0E0E0;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.choose-upload-button:before {
  content: "📎";
  font-size: 16px;
}
.choose-upload-button:hover {
  border-color: #0065FF;
  background: #F8FAFF;
}

.submit-button {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: #B3BAC5;
  border: none;
  border-radius: 8px;
  cursor: not-allowed;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.submit-button.enabled {
  background: #0065FF;
  cursor: pointer;
}
.submit-button.enabled:hover {
  background: #0052CC;
}
.submit-button.enabled:active {
  background: #003D99;
  transform: scale(0.98);
}
.submit-button:not(:disabled) {
  background: #0065FF;
  cursor: pointer;
}
.submit-button:not(:disabled):hover {
  background: #0052CC;
}
.submit-button:not(:disabled):active {
  background: #003D99;
  transform: scale(0.98);
}

.success-container {
  background: white;
  border-radius: 8px;
  padding: 48px 24px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  margin-top: 24px;
}

.success-icon {
  margin: 0 auto 24px;
  width: 64px;
  height: 64px;
}
.success-icon svg {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
}

.success-title {
  font-size: 20px;
  font-weight: 600;
  color: #253858;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.success-message {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.success-message strong {
  color: #0065FF;
  font-weight: 600;
}

.call-history-card {
  background: white;
  border-radius: 8px;
  padding: 0 0 24px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.call-history-card-inner {
  background: rgba(234, 230, 255, 0.3);
  padding: 16px;
}

.call-history-card-inner-content {
  padding: 16px;
}

.call-history-title {
  font-size: 18px;
  font-weight: 600;
  color: #253858;
  margin: 0 0 8px 0;
}

.call-history-description {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.call-history-list {
  margin-bottom: 24px;
}
.call-history-list:has(.loading-spinner) {
  text-align: center;
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading-spinner {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(191, 191, 191, 0.35);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

.call-history-item {
  display: flex;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid rgb(222, 235, 255);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.call-history-item.active {
  background: #f9f8ff;
  border-radius: 8px;
  border: 1px solid rgb(222, 235, 255);
}

.call-radio {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.call-item-content {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 12px;
}

.advisor-avatar {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0px;
  flex-shrink: 0;
}
.advisor-avatar.call-in {
  background: url("../images/home-v1/call-in.svg") no-repeat center center;
}
.advisor-avatar.call-out {
  background: url("../images/home-v1/call-out.svg") no-repeat center center;
}

.advisor-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.advisor-name {
  font-size: 14px;
  font-weight: 400;
  color: #253858;
  margin-bottom: 4px;
}

.call-date {
  font-size: 12px;
  color: #666;
}

.proceed-button {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: #B3BAC5;
  border: none;
  border-radius: 8px;
  cursor: not-allowed;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.proceed-button.enabled {
  background: #0065FF;
  cursor: pointer;
}
.proceed-button.enabled:hover {
  background: #0052CC;
}
.proceed-button.enabled:active {
  background: #003D99;
  transform: scale(0.98);
}
.proceed-button:not(:disabled) {
  background: #0065FF;
  cursor: pointer;
}
.proceed-button:not(:disabled):hover {
  background: #0052CC;
}
.proceed-button:not(:disabled):active {
  background: #003D99;
  transform: scale(0.98);
}

@media (max-width: 480px) {
  .advisor-feedback-container-inner {
    width: 100% !important;
    margin: 20px auto !important;
  }
  .feedback-form-container {
    padding: 20px;
  }
  .form-input,
  .form-textarea {
    font-size: 15px;
  }
  .file-upload-container {
    padding: 30px 15px;
  }
  .success-container {
    padding: 32px 20px;
  }
  .success-title {
    font-size: 18px;
  }
}
.selected-advisor-card {
  background: #FFFFFF;
  border: 1px solid #E3E8EF;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}

#successContainer .selected-advisor-card {
  margin-bottom: 24px;
  margin-top: 0;
}

.selected-advisor-header {
  margin-bottom: 12px;
}

.insurance-type {
  color: #36B37E;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
}

.selected-advisor-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.advisor-avatar-large {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}

.selected-advisor-info {
  flex: 1;
}

.selected-advisor-name {
  color: #253858;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 4px;
}

.selected-advisor-date {
  color: #7A869A;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.submit-button.enabled,
.submit-button:not(:disabled) {
  background: #3874FF !important;
  color: #FFFFFF !important;
  cursor: pointer;
  position: relative;
  z-index: 9999;
}

.submit-button.enabled:hover,
.submit-button:not(:disabled):hover {
  background: #2563EB !important;
}

.report-issue-card {
  flex-direction: column;
  align-items: flex-start;
  background: white;
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #253858;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.report-issue-card-inner {
  background: rgba(234, 230, 255, 0.3);
  padding: 16px;
  width: 100%;
}

.report-issue-card-inner-content {
  padding: 16px;
  width: 100%;
}

.report-issue-title {
  color: #253858;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  margin: 0 0 8px 0;
}

.report-issue-description {
  color: #7A869A;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M6 9L12 15L18 9' stroke='%23253858' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 24px;
  padding-right: 40px;
  cursor: pointer;
}
.form-select::-ms-expand {
  display: none;
}

.other-issue-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border: 1px solid #E3E8EF;
  border-radius: 12px;
  padding: 20px 24px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.other-issue-card:hover {
  box-shadow: 0px 4px 16px 0px rgba(76, 154, 255, 0.2);
  border-color: #D0E2FF;
}

.other-issue-text {
  color: #253858;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.selected-product-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid #E3E8EF;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}

.product-icon-wrapper {
  flex-shrink: 0;
  background: url("../images/homepage-product-icons-v4.png") no-repeat center center;
  background-size: 100%;
  width: 32px;
  height: 32px;
}
.product-icon-wrapper.health {
  background-position: 0px -52px;
}
.product-icon-wrapper.term {
  background-position: 0px 0px;
}
.product-icon-wrapper.car {
  background-position: 0px -157px;
}
.product-icon-wrapper.bike {
  background-position: 0px -208px;
}
.product-icon-wrapper.investment {
  background-position: 0px -105px;
}

.selected-product-name {
  color: #253858;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #FFFFFF;
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 48px;
}
.custom-select-trigger:hover {
  border-color: #3874FF;
}
.custom-select-trigger.open {
  border-color: #3874FF;
  box-shadow: 0 0 0 3px rgba(56, 116, 255, 0.1);
}
.custom-select-trigger.open .custom-select-arrow {
  transform: rotate(180deg);
}

.custom-select-text {
  color: #7A869A;
  font-size: 16px;
  line-height: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.custom-select-text.has-icon {
  color: #253858;
  font-weight: 500;
}
.custom-select-text.has-icon:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("../images/homepage-product-icons-v4.png") no-repeat center center;
  background-size: 100%;
}
.custom-select-text.has-icon.health:before {
  background-position: 0px -39px;
}
.custom-select-text.has-icon.term:before {
  background-position: 0px 0px;
}
.custom-select-text.has-icon.car:before {
  background-position: 0px -117px;
}
.custom-select-text.has-icon.bike:before {
  background-position: 0px -155px;
}
.custom-select-text.has-icon.investment:before {
  background-position: 0px -77px;
}
.custom-select-text.has-icon .option-icon {
  margin: 0;
}
.custom-select-text span {
  display: inline;
}

.custom-select-arrow {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid #E3E8EF;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.2s ease;
  z-index: -1;
}
.custom-select-options.open {
  max-height: 300px;
  overflow-y: auto;
  opacity: 1;
  z-index: 99999;
}

.custom-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.custom-option:hover {
  background: #F5F7FA;
}
.custom-option:active {
  background: #EBF4FF;
}
.custom-option span {
  color: #253858;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.option-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/homepage-product-icons-v4.png") no-repeat center center;
  background-size: 100%;
}
.option-icon.health {
  background-position: 0px -39px;
}
.option-icon.term {
  background-position: 0px 0px;
}
.option-icon.car {
  background-position: 0px -117px;
}
.option-icon.bike {
  background-position: 0px -155px;
}
.option-icon.investment {
  background-position: 0px -77px;
}

@media only screen and (max-width: 640px) {
  .report-issue-card {
    padding: 20px 16px;
  }
  .other-issue-card {
    padding: 16px;
  }
  .selected-product-card {
    padding: 12px 16px;
  }
  .custom-select-options {
    max-height: 240px;
  }
}
.error-message-container {
  border: 1px solid red;
  border-radius: 4px;
  padding: 8px;
  color: red;
  background: rgba(255, 221, 221, 0.3);
  margin: 0 0 12px;
}
.error-message-container .error-message {
  font-size: 12px;
  line-height: 18px;
}/*# sourceMappingURL=advisor_feedback.css.map */