/* Base styles */
body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.title {
    font-size: 2em;
    color: #ffb6c1; /* Softer, pastel pink */
    text-shadow: 2px 2px 4px #000000;
    margin-bottom: 20px;
}

.chat-container {
    width: 100%;
    background: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    margin-top: 20px;
    padding: 20px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.chat-window {
    height: 400px;
    overflow-y: auto;
    padding: 10px;
    border-bottom: 1px solid #333333;
}

.chat-input {
    display: flex;
    padding: 10px;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #333333;
    border-radius: 4px;
    background: #2a2a2a;
    color: #ffffff;
}

.chat-input button {
    padding: 10px 20px;
    margin-left: 10px;
    border: none;
    background: #ffb6c1; /* Softer, pastel pink */
    color: #000000; /* Black text for better readability */
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold; /* Make the text bolder for better readability */
}

.loading {
    display: none;
    text-align: center;
    padding: 10px;
    color: #ffb6c1; /* Softer, pastel pink */
}