html, body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #FFFFFF;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.image-modal.hidden {
    display: none;
}

.full-image-container {
    position: relative;
    max-width: 100%;
    max-height: 100%;
}

.full-image-container img {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    font-size: 2em;
    cursor: pointer;
    border-radius: 5px;
    padding: 0 10px;
}


/* General styles for the custom scrollbar */
body {
    scrollbar-width: 12px; /* Firefox */
    scrollbar-color: #2c3e50 #ecf0f1; /* Firefox */
}

/* Webkit browsers */
body::-webkit-scrollbar {
    width:0; /* Width of the vertical scrollbar */
    background-color: #ecf0f1; /* Background color of the scrollbar track */
}

body::-webkit-scrollbar-track {
    background: #ecf0f1; /* Background color of the scrollbar track */
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #2c3e50, #2c3e5004); /* Linear gradient for the scrollbar thumb */
    border-radius: 0 0 10px; /* Rounded corners for the scrollbar thumb */
}

/* Hover effect for the scrollbar thumb */
body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #2c3e50, #2c3e5004);
}

/* Active (clicking) effect for the scrollbar thumb */
body::-webkit-scrollbar-thumb:active {
    background: linear-gradient(to bottom, #2c3e50, #2c3e5004);
}
