* {
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

body {
    font-family: 'Manrope', sans-serif;
    background: transparent;
    margin: 0;
}

.chat-container {
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10.1px);
    -webkit-backdrop-filter: blur(10.1px);
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(36, 41, 46, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

header {
    padding: 16px 20px;
    border-bottom: 1px solid #eef2f6;
}

header h1 {
    margin: 0;
    font-size: 18px;
}

.messages {
    padding: 16px;
    overflow-y: auto;
    flex: 1;
}

.message {
    margin-bottom: 12px;
    display: flex;
}

.message.user {
    justify-content: flex-end;
}

.bubble p {
    margin: 0;
}

.bubble {
    max-width: 75%;
    padding: 5px 14px;
    border-radius: 12px;
    background: #eee;
    color: #000000;
    line-height: 2rem;
}

.message.user .bubble {
    background: #000000;
    color: #fff;
}

.input-area {
    display: flex;
    padding: 12px;
    border-top: 1px solid #eef2f6;
}

.input-area input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 50px;
    border: 1px solid #dfe8f5;
    outline: none;
}

.input-area button {
    margin-left: 8px;
    background: black;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    height: 50px;
    width: 50px;
}

.input-area button:hover {
    background: #333;
}

.small {
    font-size: 12px;
    color: #6b7280;
    margin-top: 6px;
}

/* Quick suggestions styles */
.suggestions {
    padding: 12px 16px;
    border-top: 1px solid #eef2f6;
}

.suggestions h4 {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.question-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.suggestion-btn {
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #dfe8f5;
    background: #f8fafc;
    color: #374151;
    font-size: 13px;
    transition: all 0.2s ease;
    white-space: normal;
    text-align: left;
}

.suggestion-btn:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
    transform: translateY(-1px);
}

.suggestion-btn:active {
    transform: translateY(0);
}

textarea {
  resize: vertical;
}