/* style.css */

/* Container for the image and button */
.image-container {
    text-align: center; /* Center the button below the image */
    margin-bottom: 20px; /* Space below the container */
    display: block; /* Ensure the container behaves as a block-level element */
}

/* Image styling */
.image-container img {
    max-width: 100%; /* Ensure the image scales with the container */
    height: auto; /* Maintain the aspect ratio */
    display: block; /* Ensure the image is treated as a block element */
    margin: 0 auto; /* Center the image horizontally */
}

/* Styling for the download button */
.custom-download-button {
    display: block; /* Ensure the button is displayed as a block element */
    width: auto; /* Adjust width to fit content */
    padding: 8px 12px;
    color: #fff; /* Default text color */
    text-decoration: none;
    background-color: #000; /* Default button color */
    font-size: 14px; /* Default font size */
    border: 1px solid #000; /* Default border */
    border-radius: 5px; /* Default border radius */
    margin-top: 10px; /* Space between image and button */
    margin-left: auto; /* Center the button horizontally if the container is centered */
    margin-right: auto; /* Center the button horizontally if the container is centered */
    transition: all 0.3s ease;
}

/* Hover effect for the download button */
.custom-download-button:hover {
    opacity: 0.8;
}
