/* Nhắc kiểm tra CV sau AI — góc dưới trái, cùng vị trí family với cv-apply-job-popup */

.cv-ai-review-reminder-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 10050;
  width: 392px;
  max-width: calc(100vw - 40px);
  display: block;
  box-sizing: border-box;
}

.cv-ai-review-reminder-content {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 16px;
  background: #ffffff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  box-sizing: border-box;
  max-width: 390px;
  max-height: 175px;
}

.cv-ai-review-reminder-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
}

.cv-ai-review-reminder-header-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cv-ai-review-reminder-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  flex-shrink: 0;
  margin-right: 12px;
  background: linear-gradient(180deg, #fce96a 0%, #fdfdea 50%, #ffffff 100%);
  border-radius: 50%;
}

.cv-ai-review-reminder-icon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #ffffff;
  border: 1px solid #faca15;
  border-radius: 50%;
}

.cv-ai-review-reminder-icon-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.cv-ai-review-reminder-title {
  color: var(--character-title-85, rgba(0, 0, 0, 0.85));

  /* text-lg/font-semibold */
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 27px;
  margin: 0;
}

.cv-ai-review-reminder-desc {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.65);
  margin: 0;
}

.cv-ai-review-reminder-close {
  align-self: flex-start;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 8px;
  transition: background 0.2s;
}

.cv-ai-review-reminder-close:hover {
  background: #f3f4f6;
}

.cv-ai-review-reminder-divider {
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
  border: none;
  border-top: 1px dashed #e5e7eb;
  flex-shrink: 0;
}

.cv-ai-review-reminder-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  max-height: 38px;
}

.cv-ai-review-reminder-btn {
  flex: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  min-height: 38px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  cursor: pointer;
  transition: all 0.2s;
  box-sizing: border-box;
  border: none;
  text-decoration: none;
}

.cv-ai-review-reminder-btn-secondary {
  background: #ffffff;
  border: 1px solid #ebe6e5;
  color: var(--gray-800, var(--gray-800, #383737));
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px; /* 157.143% */
}

.cv-ai-review-reminder-btn-secondary:hover {
  background: #f6f3f3;
}

.cv-ai-review-reminder-btn-primary {
  background: #f07e1d;
  color: var(--white, #fff);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px; /* 157.143% */
}

.cv-ai-review-reminder-btn-primary:hover,
.cv-ai-review-reminder-btn-primary:focus {
  background: #ff5a1f;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .cv-ai-review-reminder-popup {
    bottom: 10px;
    left: 10px;
    right: 10px;
    width: auto;
    max-width: none;
  }

  .cv-ai-review-reminder-content {
    max-height: none;
  }
}
