* {
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

:root {
    --black: #0D0E11;
    --white: #FCFAFD;
    --gray: #C7C5CB;
    --lightgray: #F6F4F7;
    --dark: #565257;
    --violet: #653B70;
    --orange: #E59B41;
}

body, html {
    background-color: var(--white);
    padding: 0;
    margin: 0;
    height: 100%;
    margin: 0;
}

.container-fluid {
    height: 100vh; /* Full viewport height */
}

.gap8 {
    gap: 8px;
}

.gap16 {
    gap: 16px;
}

.gap24 {
    gap: 24px;
}

.gap32 {
    gap: 32px;
}


.flexrow {
    display: flex;
    flex-direction: row;
}

.flexcolumn {
    display: flex;
    flex-direction: column;
}

.link:hover {
    opacity: 0.7;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px;
}

.external-link {
    text-decoration: underline; /* Keeps the underline on the text */
    position: relative; /* Allows us to style the pseudo-element independently */
}

    .external-link::after {
        content: "open_in_new"; /* Name of the Material Icon */
        font-family: "Material Icons"; /* Specify the Material Icons font family */
        margin-left: 4px; /* Space between text and icon */
        font-size: 1rem; /* Adjust the size of the icon */
        vertical-align: middle; /* Align the icon with the text */
        text-decoration: none; /* Removes the underline from the icon */
        display: inline-block; /* Ensures the icon is treated as inline content */
    }


.menuitem {
    font-size: 16px;
}

.menusub {
    margin: 8px 0px 8px 0px;
    font-size: 14px;
}

/* Fixed sidenav, full height */
.sidenav {
    height: 100vh;
    min-width: 250px;
    max-width: 250px;
    background-color: var(--lightgray);
    overflow-x: hidden;
    padding: 32px 24px 24px 24px;
    flex-shrink: 0;
}

    /* Style the sidenav links and the dropdown button */
    .sidenav a, .dropdown-btn {
        text-decoration: none;
        color: var(--dark);
        border: none;
        background: none;
        text-align: left;
        padding: 0;
        cursor: pointer;
        outline: none;
    }

        /* On mouse-over */
        .sidenav a:hover, .dropdown-btn:hover {
            color: #9C989D;
        }


/* Add an active class to the active dropdown button */
.active {
    background-color: var(--violet);
    color: white;
    padding: 4px 0 4px 4px;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
    display: none;
    padding-left: 8px;
}

/* Optional: Style the caret down icon */
.fa-caret-down {
    float: right;
    padding-right: 8px;
}

.logo {
    height: 40px;
    width: 111px;
}


h1 {
    color: var(--violet);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}

h5 {
    color: var(--violet);
}

.screenshot {
    border: 1px solid var(--gray);
    
    max-height: 300px;
    height: auto;
    cursor:pointer;
}

h2 {
    color: var(--violet);
    margin: 16px 0 0 0;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
}

h3 {
    color: var(--white);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin: 0;
}

p {
    color: var(--dark);
    margin: 16px 0 0 0;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
}

    p a {
        color: var(--violet);
    }

.actions-header {
    color: var(--violet);
}

.p-m {
    margin: 24px 0 8px 0;
}

.p-text p:last-child {
    margin-bottom: 16px;
}

.right-sidebar {
    background-color: #f8f9fa; /* Light background color for distinction */
    padding: 15px; /* Adds padding inside the sidebar */
    border-left: 1px solid #ddd; /* Adds a border to the left */
}


.flex-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.full-width {
    width: 100%;
}

.flex-row {
    display: flex;
}

.three-columns {
    justify-content: space-between;
    width: 100%;
}

.top-menu {
    background-color: var(--white);
}

.sign-in-button-container {
    margin-left: 10px;
    background: white;
    padding: 9px 12px 9px 9px;
    border: 1px solid #ccc;
    display: inline-block;
    font-size: 15px;
    line-height: 1.1;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.08);
}

.sign-in-button-container img {
    height: 20px;
}

.boolean-expression {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    display: inline;
    color: #333;
}


.column {
    flex: 1;
    padding: 10px;
}

    .column img {
        width: 240px;
    }


    td img {
        width : 24px;
    }

@media only screen and (min-width: 600px) {
}

@media only screen and (min-width: 992px) {
}

@media only screen and (min-width: 1200px) {
}

@media only screen and (min-width: 1440px) {
}

@media only screen and (min-width: 1600px) {
}
