/* General Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container Styling */
#container {
    text-align: center;
    max-width: 500px;
    width: 100%;
    padding: 2rem;
}

/* Input Container Styling */
#inputContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* Input Field Styling */
input[type="text"] {
    flex-grow: 1;
    padding: 0.8rem;
    border: 1px solid #fff; /* White border */
    border-radius: 4px;
    background-color: #333; /* Dark gray background */
    color: #fff; /* White text */
    font-size: 1rem;
    min-width: 300px;
}

/* Button Styling */
button {
    background-color: #fff; /* White button */
    color: #000; /* Black text */
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #ccc; /* Light gray hover effect */
    color: #000; /* Black text */
}

/* Success Message Styling */
#successMessage {
    font-size: 1rem;
    color: #0f0; /* Green text */
    margin-top: 1rem;
}

/* Status Message Styling */
#statusMessage {
    font-size: 1rem;
    color: #f00; /* Red text for errors */
    margin-top: 1rem;
}
