/* *,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
} */

body {
    min-height: 100vh;
    max-width: 2545px;
    margin: 0 auto;
    padding: 0%rem;
    border-left: 0px solid #333;
    border-right: 0px solid #333;
    background-color: #807970;
}

img {
    max-width: 100%;
}

/* WebKit Browsers colorize scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #aa4e57;
}

::-webkit-scrollbar-thumb {
    background: #9b111e;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9b111e;
}

/* Scrollbar buttons */
::-webkit-scrollbar-button {
    background: black;
    /* Keep the arrows black */
}

::-webkit-scrollbar-button:increment,
::-webkit-scrollbar-button:decrement {
    display: block;
    /* Ensure the buttons are displayed */
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #9b111e #aa4e57;
}

/*end scrollbar colorize*/

/*search box*/
.container {
    text-align: left;
}

/*breadcrumbs*/
.search-and-breadcrumb-table {
    width: 100%;
}

.hamburger-container {
    width: 5%;
}

.search-cell {
    text-align: left;
}

.breadcrumb-cell {
    padding-top: 2%;
    text-align: center;
    display: flex;
    align-items: left;
    transition: background-color 1.0s;
    color: #ffffff;
    white-space: nowrap;
}

.breadcrumb-cell a {
    background-color: #9b111e;
    transition: background-color 1.0s;
    /*new section for chevrons */
    padding: 6px 14px;
    margin-right: 6px;
    display: inline-block;
    clip-path: polygon(0 0,
            90% 0,
            100% 50%,
            90% 100%,
            0 100%,
            5% 50%);
}

.breadcrumb-cell a:hover {
    background-color: #ffffff;
    color: #807970;
}

/*new span section for non-linked breadcrumb*/
.breadcrumb-cell span {
    background-color: #0000cd;
    padding: 6px 14px;
    margin-right: 6px;
    display: inline-block;
    clip-path: polygon(0 0,
            100% 0,
            100% 50%,
            100% 100%,
            0 100%,
            5% 50%);
}

.crumb {
    display: inline-block;
    filter: drop-shadow(5px 10px 5px #000000);
}

.crumb-current {
    display: inline-block;
    filter: drop-shadow(5px 1px 5px #000000);
    transform: translateY(3px);
}

.crumb a,
.crumb span {
    display: inline-block;
}

.toggle-switch-cell {
    text-align: right;
}

/*mobile device hamburger menu*/
.sidebar {
    list-style-type: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: #0000cdbb;
    backdrop-filter: blur(2px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebar li {
    list-style-type: none;
    width: 100%;
    height: 50px;
}

.sidebar-nest {
    position: absolute;
    visibility: hidden;
    text-align: center;
    align-items: center;
    height: 5%;
    padding-left: 10%;
    width: 70%;
    background-color: rgba(51, 21, 21, 0.1);
}

.sidebar-main-content:hover .sidebar-nest {
    visibility: visible;
    display: flex;
}

/* Sidebar menu underline effect */
a.ssmItems:link,
a.ssmItems:visited,
a.ssmItems:active {
    color: white;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

a.ssmItems::before {
    content: "";
    position: absolute;
    bottom: -2px;
    /* adjust if needed */
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

a.ssmItems:hover {
    color: white;
    text-decoration: none;
}

a.ssmItems:hover::before {
    transform: scaleX(1);
}

/*text*/
.text {
    color: #000000;
    text-align: center;
}

/*centering content*/
.centering {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/*fonts sizes*/
h1,
h2,
h3 {
    font-size: 2em;
}

div {
    font-size: 1em;
}

nav {
    font-size: .9em;
}

/*return to article buttons*/
.return_button {
    background: #9b111e;
    border: 2px solid #000000;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 15px 10px 15px #000000;
    display: inline-block;
}

.return_button:hover {
    color: #ffffff;
    background: #0000cd;
}

/*expandedphoto in page*/
.expandedphoto {
    padding: 40px 0;
}

figure {
    max-width: 1500px;
    /*resize this later for better fit*/
    margin: 0 auto 40px;
    border: 2px solid #0000cd;
}

figure img {
    display: block;
    max-width: 100%;
    min-width: 100%;
}

.thumb_img_list {
    text-align: center;
    margin: 0 auto;
    max-width: 65%;
    justify-content: center;
}

.thumb_img_list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.thumb_img_list ul li {
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}

.thumb_img_list ul li img {
    display: block;
}

/* Update thumbnail styling */
.thumbnail {
    padding: 0px;
    transition: box-shadow 0.6s ease, transform 0.2s ease;
}

/* Flashlight glowing corner effect on hover */
.thumbnail:hover {
    box-shadow: 0px 0px 20px 15px rgba(255, 255, 255, 0.75);
    /* Glowing corners */
    transform: scale(1.05);
    /* Slight scaling for dynamic effect */
}

/*photo size toggle*/
#mainImg {
    cursor: pointer;
}

.fullsize {
    display: none;
    cursor: pointer;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: rgba(0, 0, 0, 0.8);
}

/*html bottom links*/
#links-container {
    text-align: center;
}

#links-container a:hover {
    background-color: #ffffff;
    color: #807970;
}

/*small tablet styles*/
@media screen and (min-width: 300px) {

    body {
        font-size: 8px;
    }

    .thumbnail {
        width: 75px;
        height: 65px;
    }

    .hamburger {
        width: 48px;
        height: 48px;
    }

    .sidebar {
        width: 100%;
    }

    /*random article styling phones */
    .dice {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .dice-img {
        margin-left: 10px;
        max-width: 50%;
        max-height: auto;
        cursor: pointer;
    }

    /*breadcrumbs screen size toggle*/
    .large-screen-crumbs {
        display: none;
    }

    .small-screen-crumbs {
        display: contents;
    }

    .small-crumb {
        display: flex;
        gap: 2px;
    }

    .small-screen-crumbs .breadcrumb-cell a,
    .small-screen-crumbs a {
        padding: 4px 6px;
        margin-right: 0px;
    }

    .small-screen-crumbs a {
        clip-path: polygon(0 0,
                88% 0,
                100% 50%,
                88% 100%,
                0 100%,
                6% 50%);
    }

}



/* large teablest and laptop styles*/
@media screen and (min-width: 860px) {

    body {
        font-size: 13px;
    }

    .thumbnail {
        width: 113px;
        height: 98px;
    }

    .hamburger {
        width: 80px;
        height: 80px;
    }

    .sidebar {
        width: 50%;
    }

    /*random article styling tablets */
    .dice {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .dice-img {
        margin-left: 10px;
        max-width: 100%;
        max-height: auto;
        cursor: pointer;
    }

    /*breadcrumbs screen size toggle*/
    .large-screen-crumbs {
        display: contents;
    }

    .small-screen-crumbs {
        display: none;
    }
}

/*desktop styles */
@media screen and (min-width: 1400px) {

    body {
        font-size: 18px;
    }

    .hamburger {
        width: 100px;
        height: 100px;
    }

    .sidebar {
        font-size: 1.5rem;
    }

    .sidebar li {
        padding-top: 5%;
    }

    .thumbnail {
        width: 155px;
        height: 135px;
    }


    /*random article styling desktop */
    .dice {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .dice-img {
        margin-left: 10px;
        max-width: 100%;
        max-height: auto;
        cursor: pointer;
    }

    /*breadcrumbs screen size toggle*/
    .large-screen-crumbs {
        display: contents;
    }

    .small-screen-crumbs {
        display: none;
    }
}