/* General styles */
body {
    height: 100%;
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #141519; /* Dark background color */
    color: #f8f9fa; /* Light text color */
}
.content {
    flex: 1;
    padding: 20px;
    background-color: #141519; /* Slightly lighter dark background */
    border-radius: 8px;
}
.img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
#imageContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin: 20px 0;
    padding: 10px;
    border: 1px solid #495057;
    border-radius: 8px;
    background-color: #343a40; /* Match the content background color */
}
.nav-button {
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}
.nav-button:hover {
    background-color: #0056b3;
}
.nav-button:active {
    transform: scale(0.98);
}
.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
footer {
    background-color: #343a40;
    color: #fff;
    padding: 1rem;
    text-align: center;
}
.title-bg-grey {
    background-color: #495057; /* Darker grey background for title */
    padding: 10px;
    border-radius: 5px;
    color: #f8f9fa; /* Light text color */
}
.loading {
    display: none;
    text-align: center;
    padding: 20px;
}
.bg-custom {
background: radial-gradient(circle, #A020F0 30%, #B566FF 50%, #FFD700 80%, #C0C0C0 100%);





    color: #fff;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
}
@media (max-width: 768px) {
    .nav-button {
        width: 100%;
        margin: 5px 0;
    }
}