body {
    font-family: "Courier New", Courier, monospace;
    background: black;
    background-size: cover;
    color: white;
    overflow-x: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.buttons {
    position: absolute;
    top: 20px;
    right: 20px;
}


.pumpfun-button, .github-button {
    background: none;
    border: 1px solid #d9d9e3;
    color: #d9d9e3;
    padding: 6px 12px;
    border-radius: 8px;
    margin-left: 10px;
    cursor: pointer;
    font-family: "Courier New", Courier, monospace;
}

.main-content {
    margin-top: 100px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-title {
    font-size: 28px;
    margin-bottom: 40px;
}

.input-area {
    background-color: #343541;
    padding: 15px 20px;
    border-radius: 12px;
    width: 300px;
    text-align: left;
    margin-bottom: 30px;
    font-size: 16px;
    color: #c5c5d2;
}

.suggestions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.suggestions button {
    background-color: #1e1f23;
    color: #d9d9e3;
    border: 1px solid #343541;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}

.conversation {
    width: 90%;
    max-width: 700px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.question-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    margin-bottom: 10px;
    justify-content: flex-end;
    margin-left: auto;
    margin-right: 0;
    width: fit-content;
}

.answer-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    margin-bottom: 10px;
    justify-content: flex-start;
    margin-left: 0;
    margin-right: auto;
    width: fit-content;
}

.question {
    background-color: #2a2b31;
    padding: 20px;
    border-radius: 8px;
    font-size: 16px;
    text-align: left;
    max-width: 70%;
}

.answer {
    background-color: #1e1f23;
    padding: 20px;
    border-radius: 8px;
    font-size: 16px;
    text-align: left;
    max-width: 70%;
}


.chat-profile-pic {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 0 10px;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #343541;
    margin: 10px 0;
}

.footer-text {
    font-size: 12px;
    text-align: center;
    color: #8e8ea0;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
}

