body {
    font-family: 'Amateur', Arial, sans-serif;
    line-height: 1.6;
    background-color: #1e1e1e;
    color: #ddd;
    margin: 0;
    padding: 20px;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1 {
    color: #ddd;
    text-align: center;
    margin-bottom: 20px;
}

h2, h3 {
    margin: 0;
    font-weight: normal;
    text-align: center;
}

h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

h3 {
    font-size: 24px;
    margin-top: 0;
}

h4 {
    color: #444444;
    font-size: 16px;
    margin-top: 0;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li {
    background-color: #333;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

a {
    color: #4fc3f7;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#pagination {
    text-align: center;
    margin-top: auto;
}

button {
    font-family: 'Amateur', Arial, sans-serif;
    background-color: #333;
    color: #888;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 16px;
}

button:disabled {
    background-color: #666;
    cursor: not-allowed;
}

button:hover {
    background-color: #555;
    color: #fff;
}

.search-container {
    font-family: 'Amateur', Arial, sans-serif;
    text-align: center;
    margin-bottom: 20px;
}

#search-input {
    width: 300px;
    padding: 10px;
    font-family: 'Amateur', Arial, sans-serif;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

input[type="text"] {
    padding: 10px;
    width: 300px;
    border-radius: 5px;
    border: 1px solid #666;
    background-color: #333;
    color: #ddd;
    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #202020;
    color: #ccc;
    text-align: center;
    padding: 10px;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
}

footer a {
    color: #4fc3f7;
    text-decoration: none;
    margin: 0 5px;
}

footer a:hover {
    text-decoration: underline;
}

footer2 {
    position: fixed;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
}

footer2 a {
    color: #4fc3f7;
    text-decoration: none;
    margin: 0 5px;
}

footer2 a:hover {
    text-decoration: underline;
}

.download-message {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
}

.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 15px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px; /* Rounded corners */
    cursor: pointer;
    text-decoration: none; /* Remove default underline */
}

.back-button:hover {
    background-color: #555;
}

.back-button:focus {
    outline: none; /* Remove focus outline */
}

img {
    width: 200px;
    margin-top: 20px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
  background: #00000000; 
}
 
::-webkit-scrollbar-thumb {
  background: #252525; 
}

::-webkit-scrollbar-thumb:hover {
  background: #454545; 
}