/* body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #ffffff, #f0f0f0); 
    color: #333; 
    text-align: center;
    padding: 50px;
} */

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #2c3e50, #809ea3);
    color: white;
    text-align: center;
    padding: 50px;
}

/* .container {
    max-width: 1000px;
    margin: auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
} */

.container {
    width: 100%;
    min-height: 100vh;
    background: white; /* solid white instead of translucent */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

img {
    width: 100%;
    max-width: 900px;
    margin-top: 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}



img:hover {
    transform: scale(1.5);
}

.top-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #f39c12;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: none;
}

.top-button:hover {
    background-color: #e67e22;
}

.breadcrumb {
    text-align: left;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #f39c12;
    text-decoration: none;
    font-size: 18px;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.checkbox-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* ensures left alignment */
    margin-top: 10px;
    gap: 10px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
    gap: 8px;
    color: black; 
    font-family: Arial, sans-serif;
}

.custom-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: green; /* makes the checkmark green when selected */
}
