/* styles.css */

body {
    background-image: url("staircase.jpg");
    margin: 0;
    font-family: 'Arial', sans-serif;
}

#chat-container {
    max-width: 600px;
    height: 600px;
    margin: 20px auto;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    scroll-behavior: smooth;
}

.message {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

h1 {
    color:#ffffff;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Add a subtle glow effect */
}

img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

.name {
    font-weight: bold;
    margin-right: 5px;
    color: #333;
}

.message p {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    max-width: 80%;
}

#continue-btn-container {
    text-align: center; /* Center the button */
}

#continue-btn {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#continue-btn:hover {
    background-color: #45a049;
}
