body {
    background-color: #121212;
    color: #ffffff;
    text-align: center;
    padding-top: 50px;
}

.container {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

h1 {
    margin-bottom: 30px;
}

/* Button styling */
form input {
    background-color: #717171 !important;
    color: #ffffff !important;
    border: 1px solid #acacac !important;
    margin-top: 15px;
}

/* Apply styles to input and textarea */
form textarea{
    background-color: #2c2c2c !important;  /* Force dark background */
    color: #ffffff !important;
    border: 1px solid #8f8f8f !important;
}

form input[type=password] {
    background-color: #2c2c2c !important;  /* Force dark background */
    color: #ffffff !important;
    border: 1px solid #8f8f8f !important;
}

form input[type=number] {
    background-color: #2c2c2c !important;  /* Force dark background */
    color: #ffffff !important;
    border: 1px solid #8f8f8f !important;
}
/* Link styles */
a {
    color: #00aaff;
}

a:hover {
    color: #007bff;
}

/* Result item styles */
.result-item {
    color: #ffffff;
    list-style-type: none;
}

/* Preformatted text */
pre {
    color: #ffffff;
}
