/* styles.css */
body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #121212; /* AMOLED-friendly background */
    margin: 0;
}

.container {
    text-align: center;
    padding: 20px;
    background: #1f1f1f;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    color: #ffffff; /* White text for contrast */
    width: 90%;
    max-width: 400px;
}

h1 {
    margin-bottom: 20px;
}

button {
    padding: 10px 20px;
    margin-top: 20px;
    cursor: pointer;
    background-color: #ff5722; /* Attractive orange color */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #e64a19; /* Darker orange on hover */
}

.password-container {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

input {
    flex: 1;
    padding: 10px;
    border: 1px solid #757575;
    border-radius: 5px;
    font-size: 16px;
    background-color: #424242;
    color: white;
    margin-right: 10px;
}

#copy {
    padding: 10px;
    background-color: #4caf50; /* Green color for copy button */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#copy:hover {
    background-color: #388e3c; /* Darker green on hover */
}

.hidden {
    display: none;
}

#copy-feedback {
    margin-top: 10px;
    color: #4caf50; /* Feedback message color */
    font-size: 14px;
}
