@font-face {
	font-family: SkyFont;
	src: url(https://1973584292.rsc.cdn77.org/fonts/sky/stfont.ttf);
}
@font-face {
	font-family: SkyFontMedium;
	src: url(https://1973584292.rsc.cdn77.org/fonts/sky/stfontm.ttf);
}

:root {
  --primary-color: #0072c9;
  --primary-hover: #005da3;
  --background: #f0f4f8;
  --card-bg: #ffffff;
  --border-radius: 12px;
  --transition: 0.3s ease;
  --font: 'SkyFont', Arial, Tahoma, Geneva, Verdana, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  background-color: var(--background);
  margin: 0;
  padding: 0;
  color: #333;
}

.container {
  max-width: 800px;
  margin: 40px auto;
  background: var(--card-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo {
  display: block;
  margin: 25px auto 30px;
  max-width: 180px;
}

h1 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

form label {
  display: block;
  margin-top: 20px;
  margin-bottom: 8px;
  font-weight: 600;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border var(--transition);
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.button-wrapper {
  text-align: center;
  margin-top: 30px;
}

button {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 32px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color var(--transition);
}

button:hover {
  background-color: var(--primary-hover);
}

.tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.tag {
  background-color: #f0f4f8;
  color: #333;
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  font-size: 0.9rem;
  user-select: none;
}

.tag:hover {
  background-color: #e0ecf7;
  border-color: #0072c9;
}

.tag.selected {
  background-color: #0072c9;
  color: white;
  border-color: #005da3;
}

/* Red asterisk for required fields */
.required {
  color: red;
  margin-left: 4px;
}

/* General error label style */
label.error {
  color: #d8000c;
}

/* Tag container error border */
.tag-container.error {
  border: 2px solid #d8000c;
  border-radius: 8px;
  padding: 10px;
  background-color: #fff6f6;
}

/* Optional helper error text block */
.error-message {
  color: #d8000c;
  font-size: 0.875em;
  margin-top: 4px;
  display: block;
}

.skyvip-chat-icon {
    position: fixed;
    bottom: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
    background-color: #f9f9f9;
    border-radius: 12px;
    display: flex
;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.skyvip-chat-icon:hover {
  transform: translateY(-3px);
}

.skyvip-chat-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.skyvip-drawer {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 480px;
  height: 85%;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 9998;
  overflow-y: auto;
}

.skyvip-drawer.open {
  transform: translateY(0%);
}

    .chatbot-header {
      text-align: center;
      padding: 16px;
    }

    .chatbot-header img {
      max-width: 160px;
    }
textarea {
  font-family: var(--font);
  color: #4A4A4A;
}
textarea.prefilled {
  font-family: var(--font);
  color: #999;
}
.message-hint {
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 12px 16px;
  border: 1px solid #0072c9;
  background-color: #eaf4fc;
  color: #333;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font);
  white-space: pre-wrap;
}
.is-hidden { display: none !important; }
