html, body  {
      margin: 0;
	  padding: 0;
      font-family: 'Segoe UI', sans-serif;
	  background-size: cover;
	  background-position: center;
	  background-repeat: no-repeat;
	  background-attachment: fixed;
      color: #111827;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .hero {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 60px 20px;
      text-align: center;
    }

	.chat-box {
		height: 30vh;
		display: flex;
		flex-direction: column;
		gap: 0.5rem;
		padding: 1rem;
		overflow-y: auto;
		padding: 1rem;
		border-radius: 10px;
	}
	
    .chat-box-go {
		display: flex;
		flex-direction: column;
		gap: 0.5rem;
		padding: 1rem;
		overflow-y: auto;
		padding: 1rem;
		border-radius: 10px;
	}
	
	.avatar {
		width: 30px;
		height: 30px;
		border-radius: 50%;
		object-fit: cover;
	  }
	.logo-small {
		height: 36px;
		width: auto;
	}
			
    .logo {
	  margin-top: 20px;
      width: 280px;
      height: auto;
      margin-bottom: 24px;
    }
	
	.logoMain {
	  margin-top: 20px;
      width: 350px;
      height: auto;
      margin-bottom: 24px;
    }
	
    .hero h1 {
      font-size: 1.8rem;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .hero p {
      color: #6b7280;
      font-size: 1rem;
      margin-bottom: 24px;
    }

    .btn-primary {
      background-color: #10a37f;
      border: none;
      padding: 10px 20px;
      border-radius: 9999px;
      font-weight: 500;
      font-size: 0.95rem;
      transition: background-color 0.3s ease;
    }

    .btn-primary:hover {
      background-color: #0e8d6f;
    }
	#user-controls {
	  min-height: 48px; 
	}
    footer {
	  position: fixed;
	  bottom: 0;
	  left: 0;
	  width: 100%;
	  padding: 15px 0;
	  /*border-top: solid rgba(255, 255, 255, 0.8); */
	  text-align: center;
	  font-size: 0.9rem;
	  color: #6b7280;
	  z-index: 10;
    }
	.min-vh-75 {
	  min-height: 75vh;
	}
	.message {
	  display: flex;
	  flex-direction: row;
	  width: 100%;
	  margin-left: auto; 
	  line-height: 1.5;
	  white-space: pre-wrap;
	  word-wrap: break-word;
	}

	.user {
	  margin-left: auto; 
	  background-color: #ececf1; 
	  color: #1f2937;
	  font-weight: 400;
	  border-radius: 1.5rem;
	  padding: 0.625rem 1.25rem;
	  max-width: 85vw;
	  word-wrap: break-word;
	  overflow-wrap: break-word;
	  line-height: 1.5;
	  display: inline-block;
	  text-align: left;
	  box-sizing: border-box;
  }

	 #auth-section {
      max-width: 400px;
      margin: auto;
    }

    .lang-switch {
      position: absolute;
      top: 1rem;
      right: 1rem;
	  font-family: 'Segoe UI', sans-serif;
	  font-size: 0.9rem;
	  color: #4b5563;
    }
	.lang-switch a {
	  text-decoration: none;
	  color: #10a37f;
	}

	.lang-switch a:hover {
	  color: #0e8d6f;
	}

	@media (max-width: 767px) {
	  .hero {
		padding: 50px 10px;
	  }
	  #chat-section {
		padding: 0.5rem;
	  }

	  .chat-box {
		padding: 0.5rem;
	  }

	  .form-control,
	  .btn,
	  select {
		font-size: 0.95rem;
	  }
	  .logo {
		max-width: 150px;
	  }
	  
	 .logoMain {
		  margin-top: 20px;
		  width: 280px;
		  height: auto;
		  margin-bottom: 24px;
		}
	}
	
	/*BG Color*/
	#colorPickerBtn {
      position: absolute;
      top: 50px;
      right: 15px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 2px solid white;
      background-color: #ffffff;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      cursor: pointer;
      z-index: 1001;
    }

    #colorPickerPanel {
      position: absolute;
      top: 50px;
      right: 60px;
      background-color: transparent;
      display: none;
      flex-direction: column;
      gap: 8px;
      z-index: 1000;
    }

    .color-row {
      display: flex;
      gap: 8px;
    }

    .color-circle {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      cursor: pointer;
      border: 2px solid white;
      box-shadow: 0 2px 4px rgba(0,0,0,0.2);
      transition: transform 0.2s;
    }

    .color-circle:hover {
      transform: scale(1.1);
    }
	
	
#calendarBtn {
  position: absolute;
  top: 90px;
  right: 15px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
}


#calendarPanel {
  position: absolute;
  top: 90px;
  right: 60px;
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  width: 220px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: none;
  z-index: 1000;
}

.calendar-day {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  font-size: 14px;
}

.calendar-day:hover {
  background-color: #10a37f;
}

.calendar-dot {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
}

#conversationContainer {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
  font-size: 0.95rem;
}

#conversationContainer .mb-1 {
  margin-bottom: 0.5rem;
}
