/* ==================== CHAT INPUT ==================== */
.chat-input-container {
    padding: 20px 30px 30px;
    background: #2f2f2f;
    position: relative;
}

.input-wrapper {
    position: relative;
    background: #404040;
    border: 1px solid #525252;
    border-radius: 24px;
    padding: 14px 55px 14px 20px;
    transition: all 0.2s ease;
    max-width: 800px;
    margin: 0 auto;
}

.input-wrapper:focus-within {
    border-color: #f97316;
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
}

.chat-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    color: #e5e5e5;
    resize: none;
    min-height: 22px;
    max-height: 120px;
}

.chat-input::placeholder {
    color: #737373;
}

.input-buttons {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 6px;
}

.input-button {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: #a3a3a3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.input-button:hover {
    background: #525252;
    color: #e5e5e5;
}

.send-button {
    background: #f97316;
    color: white;
}

.send-button:hover {
    background: #ea580c;
}

.send-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #525252;
}

/* ==================== SUGGESTED QUESTIONS ==================== */
.suggestions-container {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    margin-bottom: 15px;
    padding: 0 30px;
    display: none;
}

.suggestions-container.show {
    display: block;
}

.suggestions-grid {
    display: grid;
    gap: 8px;
    max-height: 200px;
    overflow-y: auto;
}

.suggestion-item {
    padding: 12px 16px;
    background: #404040;
    border: 1px solid #525252;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: #e5e5e5;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.suggestion-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(234, 88, 12, 0.1));
    opacity: 0;
    transition: opacity 0.2s ease;
}

.suggestion-item:hover {
    background: #525252;
    border-color: #f97316;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.suggestion-item:hover::before {
    opacity: 1;
}

.suggestion-item:active {
    transform: translateY(0);
}