/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0; /* Light background color */
    color: #333; /* Dark text color */
    margin: 0;
    padding: 0;
    transition: background-color 0.3s ease; /* Add background color transition */
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff; /* White container background */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Light shadow */
    border-radius: 10px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Add transitions */
}

h1 {
    text-align: center;
    color: #007BFF; /* Accent color */
}

.hidden {
    display: none;
}

form, #outputView {
    margin-top: 20px;
    padding: 20px;
    background-color: #f9f9f9; /* Light gray background */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Light shadow */
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Add transitions */
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333; /* Dark text color */
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc; /* Light border color */
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff; /* White input background */
    color: #333; /* Dark text color */
    transition: background-color 0.3s ease, border-color 0.3s ease; /* Add transitions */
}

input[type="text"]:focus {
    border-color: #007BFF; /* Highlight border on focus */
    background-color: #f0f0f0; /* Lighter background on focus */
}

button {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease; /* Add background color transition */
}

button:hover {
    background-color: #0056b3; /* Darker accent color on hover */
}

#output {
    margin-top: 20px;
    padding: 20px;
    background-color: #f9f9f9; /* Light gray background */
    border: 1px solid #ccc; /* Light border color */
    border-radius: 10px; /* Rounded corners */
    font-size: 16px;
    color: #333; /* Dark text color */
    transition: background-color 0.3s ease; /* Add background color transition */
}

a {
    text-decoration: none;
    color: #007BFF;
    margin-right: 10px;
    font-size: 18px;
    transition: color 0.3s ease; /* Add text color transition */
}

a:hover {
    text-decoration: underline;
    color: #0056b3; /* Darker accent color on hover */
}
