body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f2f5;
    margin: 0;
}

.container {
    display: flex;
    text-align: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 1200px;
}

.roblox-id-viewer {
    flex: 1;
    padding-right: 20px;
    border-right: 1px solid #ddd;
}

.chat-bot {
    flex: 1;
    padding-left: 20px;
    text-align: left;
}

#chat-messages {
    height: 300px;
    overflow-y: scroll;
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 10px;
}

.chat-input {
    display: flex;
}

.chat-input input[type="text"] {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.chat-input button {
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 5px;
}

.chat-input button:hover {
    background-color: #0056b3;
}

#roblox-avatar {
    display: block;
    margin: 0 auto 15px auto; 
    border-radius: 50%; 
    border: 3px solid #ddd; 
    background-color: #eee; 
}

h1 {
    color: #333;
    margin-bottom: 15px;
}

#roblox-id-display {
    font-size: 3em;
    font-weight: bold;
    color: #1d1d1d;
    margin-bottom: 10px;
}

#roblox-profile-link {
    display: inline-block; 
    margin-bottom: 20px; 
    color: #007bff;
    text-decoration: none;
    font-size: 1.1em;
}

#roblox-profile-link:hover {
    text-decoration: underline;
}

#next-id-button {
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 10px; 
}

#next-id-button:hover {
    background-color: #0056b3;
}

/* Calculator Styling */
#calculator-input {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#calculator-input input[type="number"] {
    width: 70px;
    padding: 8px;
    margin: 0 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
}

#calculator-input select {
    padding: 8px;
    margin: 0 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
}

#calculator-input button {
    padding: 8px 16px;
    margin: 0 5px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#calculator-input button:hover {
    background-color: #218838;
}

/* Style for the new button */
#specific-user-button {
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #6c757d; 
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px; 
    display: block; 
    margin-left: auto;
    margin-right: auto;
}

#specific-user-button:hover {
    background-color: #5a6268;
}