@charset "utf-8";
/* CSS Document */

html, body {
    margin: 0;
    padding: 0;
    width: 100%; /* Prevent unnecessary horizontal scrolling */
    overflow-x: hidden; /* Disable horizontal scrollbars */
}


body {
    font-family:'Raleway', sans-serif;  /*Raleway | Karla*/
    font-size:font-size:100.1%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #f8f9fa;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .back-btn {
    font-size: 14px;
    padding: 8px 14px;
    text-decoration: none;
    color: white;
    background: #4A90E2;
    border-radius: 0px;
    margin-left: 30px;
    display: inline-block;
}

header .back-btn:hover {
    background: #0056b3;
}

.pagination-container {
    display: flex;
    gap: 10px;
    padding: 0px;
    margin:14px;
}

.pagination-container button,
.pagination-container select {
    padding: 8px 14px;
    font-size: 14px;
}

.pagination-container button {
    border: none;
    cursor: pointer;
    background: #4A90E2;
    color: white;
    border-radius: 0px;
}

.pagination-container button:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

/* Scrollable Image Container */
   #image-container {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align images to the top */
    height: 90vh; /* Fixed height for the container */
    width: 100%;
    background: #f4f4f4;
    margin-top: 0px; /* was 20px, looked bad  */
    overflow-y: auto; /* Enable vertical scrolling */
    overflow-x: hidden; /* Disable horizontal scrollbars */
    box-sizing: border-box; /* Prevent borders or padding from adding extra size */
}

#image-container img {
    max-width: 85%; /* Responsive width */
    height: auto; /* Maintain aspect ratio for wide images */
    border: 1px solid #cccccc;
    border-radius: 0px;
}
/* End Styles */