html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

*, :after, :before {
  box-sizing: border-box;
}

body {
  background-color: #fff;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  color: inherit;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  margin-block-end: 1rem;
  margin-block-start: .5rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-block-end: .9rem;
  margin-block-start: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
  white-space: pre-wrap;
}

a {
  background-color: transparent;
  color: #c36;
  text-decoration: none;
}

a:active, a:hover {
  color: #336;
}

a:not([href]):not([tabindex]), a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

abbr[title] {
  border-block-end: none;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

img {
  border-style: none;
  height: auto;
  max-width: 100%;
}

details {
  display: block;
}

summary {
  display: list-item;
}

figcaption {
  color: #333;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
}

[hidden], template {
  display: none;
}

@media print {
  *, :after, :before {
    background: transparent !important;
    box-shadow: none !important;
    color: #000 !important;
    text-shadow: none !important;
  }
  
  a, a:visited {
    text-decoration: underline;
  }
  
  a[href]:after {
    content: " (" attr(href) ")";
  }
  
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  
  a[href^="#"]:after, a[href^="javascript:"]:after {
    content: "";
  }
  
  pre {
    white-space: pre-wrap !important;
  }
  
  blockquote, pre {
    -moz-column-break-inside: avoid;
    border: 1px solid #ccc;
    break-inside: avoid;
  }
  
  thead {
    display: table-header-group;
  }
  
  img, tr {
    -moz-column-break-inside: avoid;
    break-inside: avoid;
  }
  
  h2, h3, p {
    orphans: 3;
    widows: 3;
  }
  
  h2, h3 {
    -moz-column-break-after: avoid;
    break-after: avoid;
  }
}
.button-container {
            display: flex;
            gap: 10px;
			float:right;
			margin-right:15px;
        }
        
        .sign-up-button {
            padding: 5px 15px;
border: 1.5px solid white;
border-radius: 25px;
color: white;
font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .sign-in-button {
            padding: 5px 15px;
border: 1.5px solid white;
border-radius: 25px;
color: white;
font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .sign-up-button:hover {
            background-color: rgba(255, 255, 255, 0.6);
            transform: translateY(-2px);
			color:#FFFFFF;
        }
        
        .sign-in-button:hover {
            background-color: rgba(255, 255, 255, 0.6);
            transform: translateY(-2px);
			color:#FFFFFF;
        }
        
        .button-label {
            text-align: center;
            color: white;
            margin-top: 10px;
            font-size: 12px;
        }


.user-menu {
    position: relative;
    display: inline-block;
}

.user-icon {
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
}

.user-menu:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
}

.dropdown-content a:hover {
    background: #f5f5f5;
}

.dropdown-content a:last-child {
    border-bottom: none;
    color: #e74c3c;
}

#ai-greeting {
    font-size: 28px; 
    color: #fff; 
    text-align: center; 
    padding: 20px; 
    font-style: italic;
    margin: 20px 0; 
    border-radius: 8px; 
    align-items: center; 
    justify-content: center;
    animation: textGlow 2s ease-in-out infinite alternate;
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
	max-width: 90%;
margin: 0 auto;
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 107, 107, 0.7);
    }
}

.typing-cursor {
    animation: blink 1s infinite, cursorColor 2s infinite alternate;
}
@keyframes cursorColor {
    0% { color: #ff6b6b; }
    50% { color: #4ecdc4; }
    100% { color: #45b7d1; }
}
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}
.homepage-chat {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
}

.chat-input-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.chat-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #007cba;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
}

.chat-button {
    padding: 12px 15px;
background: #fff;
color: #a2a2a2;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
}

.chat-button:hover {
	border: 1px #FFFFFF solid;
	padding: 12px 15px;
	background:none;
	border-radius: 30px;
}

.chat-response {
    min-height: 60px;
    padding: 15px;
    border-radius: 10px;
    background: #f9f9f9;
    border-left: 3px solid #28a745;
}

.homepage-input {
    border-radius: 30px;
    padding: .5rem 1rem;
    transition: all .3s;
    width: 100%;
}
