body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212; /* Dark background */
    color: #fff; /* White text */
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #1a172bbd; /* Darker container background */
    border-radius: 8px;
    box-shadow: 0 0 10px #0056b3;
    text-align: center;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #fff; /* White text */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #2c2c2c; /* Navy border */
    border-radius: 4px;
    background-color: #2a2a2a; /* Navy background */
}

li:hover {
    background-color: #3a3a3a; /* Darker navy background on hover */
}

li span {
    font-weight: bold;
    color: #fff; /* White text */
    margin-right: 10px;
}

.copy-button {
    cursor: pointer;
    border: none;
    background-color: #007bff; /* Blue button */
    color: #fff; /* White text */
    padding: 5px 10px;
    border-radius: 4px;
    margin-right: 10px;
}

a {
    color: #0078e3; /* White text */
}

.copy-button:hover {
    background-color: #0056b3; /* Darker blue button on hover */
}

.search-container {
    text-align: center;
    margin-bottom: 20px;
}

.search-container input[type=text] {
    width: 300px;
    padding: 10px;
    border: 2px solid #007bff; /* Blue border */
    border-radius: 5px;
    font-size: 16px;
    background-color: #2a2a2a; /* Navy background */
    background-image: url('https://cdn-icons-png.flaticon.com/512/622/622669.png'); /* Search icon image URL */
    background-size: 20px; /* Adjust the size of the icon */
    background-position: 10px 10px;
    background-repeat: no-repeat;
    padding-left: 40px; /* Adjust based on the icon width */
    outline: none;
    color: #fff; /* White text */
}

.search-container input[type=text]:focus {
    border-color: #0056b3; /* Darker blue border on focus */
}
