body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #1e1e2e; /* Catppuccin Mocha Base */
    color: #cdd6f4; /* Catppuccin Mocha Text */
}

.container {
    background-color: #313244; /* Catppuccin Mocha Surface0 */
    padding: 30px 40px; /* Increased padding */
    border-radius: 20px; /* More rounded corners */
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    text-align: center;
    max-width: 500px; /* Limit container width */
}

h1 {
    color: #f38ba8; /* Catppuccin Mocha Pink */
    margin-bottom: 20px;
    font-size: 28px; /* Larger font size */
    font-weight: bold; /* Bold font weight */
}

.form-container {
    display: flex;
    margin-bottom: 30px; /* Increased margin */
}

input[type="text"] {
    background-color: #45475a; /* Catppuccin Mocha Surface1 */
    color: #cdd6f4;
    border: none;
    padding: 12px; /* Increased padding */
    border-radius: 10px 0 0 10px; /* More rounded corners */
    flex-grow: 1;
    font-size: 16px; /* Larger font size */
}

button {
    background-color: #b4befe; /* Catppuccin Mocha Lavender */
    color: #1e1e2e;
    border: none;
    padding: 12px 25px; /* Increased padding */
    border-radius: 0 10px 10px 0; /* More rounded corners */
    cursor: pointer;
    font-size: 16px; /* Larger font size */
    transition: background-color 0.3s ease; /* Smooth transition */
}

button:hover {
    background-color: #a6adc8; /* Catppuccin Mocha Subtext0 */
}

pre {
    background-color: #45475a;
    color: #cdd6f4;
    padding: 20px; /* Increased padding */
    border-radius: 10px; /* More rounded corners */
    white-space: pre-wrap;
    text-align: left;
    font-size: 14px;
    line-height: 1.6; /* Increased line height */
}

#profilePic {
    max-width: 180px; /* Slightly smaller image */
    max-height: 180px; /* Slightly smaller image */
    margin: 20px auto 30px; /* Increased bottom margin */
    border-radius: 50%;
    display: block;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.4); /* Shadow for image */
}

/* Emoji styles */
.emoji {
    font-size: 18px;
    margin-right: 5px;
}