@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Noto Sans", sans-serif !important;
}

.container-fluid {
    max-width: 100%;
}

#docsSearch {
    background: linear-gradient(to bottom, #6b46c1ff, #f04282ff);
    height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: end;
    border-radius: 0px 0px 20px 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#mainNav .navbar-inner {
    background: #6b46c1ff;
}

#docsSearch h1 {
    color: #ffffff;
    font-weight: 300;
}

#searchBar button {
    background: #0097ff;
    border: solid 1px #0097ff
}

#searchBar button:hover {
	background: #2a4057;
	border: 1px solid #2a4057;
}

/* Buttons */

    .hs_primary {
        cursor: pointer;
        background: #0097ff;
        border-radius: 5px;
        padding: 10px;
        display: flex;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: background-color 0.25s ease, transform 0.2s ease;
        margin: 0% 20% 0% 20%;
    }

    .hs_primary:hover {
        background-color: #2b3f57;        
    }

    .hs_primary a {
        color: #ffffff !important;
        font-size: 1.2rem;
        font-weight: 300;
    }

/**/

/* Blocks */

    .hs_infoBlock {
        background-color: #0097ff80;
        border-left: 5px solid #0097ff;
        border-right: 5px solid #0097ff;
        padding: 10px;
    }

    .hs_confirmationBlock {
        background-color: #4BB54380;
        border-left: 5px solid #4BB543;
        border-right: 5px solid #4BB543;
        padding: 10px;
    }

    .hs_alertBlock {
        background-color: #ff4d4d80;
        border-left: 5px solid #ff4d4d;
        border-right: 5px solid #ff4d4d;
        padding: 10px;
    }

    .hs_warningBlock {
        background-color: #ffa50080;
        border-left: 5px solid #ffa500;
        border-right: 5px solid #ffa500;
        padding: 10px;
    }

/**/

/* Images */

    .hs_imgRow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    max-width: 100%;
    }

    .hs_thumb {
        width: 100% !important; 
        max-width: 200px !important;
        aspect-ratio: 1 / 1 !important;
        border-radius: 5px !important;
        object-fit: cover !important;
        margin: 0 !important;
    }

    #fullArticle img {
        padding: 0;
        border-radius: 10px;
        border: none;
        max-height: 500px;
    }

    #fullArticle .hs_imgRow img {
        margin: 0;
        max-height: unset;
    }

/**/