
:root {
    --page-bg:rgb(73, 72, 72);
    --title-bar-bg: white;
    --menu-bg:white;
    --card-collections-bg:white;
    --card-collections-title-bg:rgb(55, 121, 58);
    --card-collections-title-txt:rgb(255, 255, 255);
    --plant-container-bg: hsl(0, 0%, 100%);
    --plant-selection-bg: hsla(178, 15%, 44%, 1);
    --plant-selection-btn-bg: hsla(178, 15%, 44%, 1);
    --plant-selection-btn-txt: hsl(0, 0%, 100%);
    --footer-bg:  hsl(0, 0%, 94%);
    --footer-text: hsla(131, 70%, 10%, 1);
    --primary-font: 'Times New Roman', Times, serif;
}

.hidden {
    display: none;
}

body {
    background-color: var(--page-bg);
    margin: 0;
    padding: 0;
/*    height: 100vh; /* Make the body full height of the viewport */
    font-family:var(--primary-font);
}
img {
    width:100%;
}

.flexrow {
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    gap:2px;
    padding:2px;
    font-size:1em;
    
}
.flexrow-nowrap {
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    gap:.5em;
    padding:5px;
    font-size:1em;
}

.flexcolumn {
    display:flex;
    flex-direction:column;
    gap:.5em;
    padding:5px;
    font-size:1em;
}

.flexcolumn-rel {
    display:flex;
    flex-direction:column;
    position: relative;
    gap:.5em;
    padding:5px;
    font-size:1em;
}



.clickable-image {
    display: block;
    width: 100%;
    transition: transform 0.2s ease;
}

.clickable-image:active {
    transform: scale(0.95);
}

.inv-total-text{
    position:relative;
    color:coral;
    font-style:italic;
    font-weight:bold;
    bottom:0;
}

.scrollable-flexrow-wrap {
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    overflow-x:hidden;
    overflow-y:auto;
    padding:2px;
}


.landing-page-footer {
    background-color: var(--footer-bg);
    padding: 2px;
    text-align: center;
    font-size: 12px;
    color: var(--footer-text);
    position: fixed;
    bottom: 0;
    width: 100%;
}


