.input.auto-width {
    width: auto;
}

#copyNotification {
    position: fixed; /* Fixed positioning to make it stay in the same place */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust the exact center */
    display: none; /* Initially hidden */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent grey background */
    color: white; /* Text color */
    padding: 10px 20px; /* Some padding */
    border-radius: 5px; /* Rounded corners */
    z-index: 1000; /* Ensure it's above other content */
}