:root {
    /*bgs*/ 
    --body-bg: #f0f5f9; 
    --nav-bg: linear-gradient(90deg, #0048b3 0.36%, #0085ff 99.27%); 
    --col-grayish: #eef4fa; 
    --col-grayishAndWhite: #ffffff; 
    --input-bgs: #ffffff; 
    --article-boxshad: 0 2px 4px rgba(0, 0, 0, 0.15); 
    --article-bg: white; 

    /*text*/
    --white-text: #e3e3e3;
    --link-color: #00509d; 

    --col-darkblue: #0d4a91;
    --col-buttHover: #002d58;
    
    --highlight-color: #ffff79;  
    --headers-color: #414141; 
    --col-lightblue: #0071dc;
    --col-checkbord: #0071dc;   
    --col-addButts: white; 
    --border-addButts: 2px solid #0071dc; 

    --border-cats: 0.125rem solid #a8cef5; 

    --logo-color: #FFFF79; 

    --form-border: 0.115625rem solid rgb(219, 219, 219);
}

[data-theme="dark"] {
    /*bgs*/ 
    --body-bg: rgb(17, 17, 17);
    --nav-bg: black; 
    --input-bgs: black; 
    --article-bg: black; 

    /*text*/ 
    --white-text: white;
    --link-color: #94cdfc; 


    --col-grayish: #262831; 
    --col-grayishAndWhite: #202129; 
    --headers-color: #fff; 
    --col-darkblue: #0d9b82;
    --col-lightblue: #4d4d4d;
    --col-checkbord: black;   
    --col-addButts: transparent;
    --border-addButts: 2px solid #4d4d4d; 
    --highlight-color: #0071dc;   

    --col-buttHover: #0d9b82;
    
    --border-cats: none; 
    --logo-color: #ae7cff; 
     --form-border: 0.115625rem solid #4d4d4d;
     --article-boxshad: 0 0px 0px rgba(0, 0, 0, 0.0); 
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
    text-decoration: none; 
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
}

html {
    scroll-padding-top: 7.5rem; 
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    margin: auto;
    color: #1a1b29; 
    background-color: var(--body-bg);
}

h2,h3 {
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.4rem; 
}

h1 {
    font-size: 1.5rem;
    margin-bottom: 0; 
}

h3 {
    font-size: 1.35rem;
}

.marl05 {
    margin-left: 0.5rem; 
}

.flex-container {
    display: flex;
    align-items: center;
}

.grid {
    display: grid;
    grid-auto-flow: column;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.625rem;
}

.theme-toggle {
    display: inline-flex;
  }
  
  #theme-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.65rem;
  }
  
  /* Default: show light icon, hide dark icon */
  .light-icon {
    display: block;
  }
  
  .dark-icon {
    display: none;
  }
  
  /* When data-theme is dark, swap visibility */
  [data-theme="dark"] .light-icon {
    display: none;
  }
  
  [data-theme="dark"] .dark-icon {
    display: block;
  }

#add-store-btn {
    opacity: 1;
    border: none;
    padding: 0.8rem 0.5rem 0.85rem 0.5rem;
    border-radius: 0.35rem;
    font-size: 1rem;
    box-sizing: border-box;
    background-color: var(--col-addButts);
    font-weight: 600;
    color: var(--headers-color);
    transition: opacity 0.22s ease-in-out;
    line-height: 0;
    min-width: 6.5rem;
    margin-top: 0.75rem;
    border: var(--border-addButts);
}

#add-store-btn:hover {
    opacity: 0.8; 
}


#store-dropdown {
    background-color: #ffffff !important; 
}

.grid.active {
    cursor: grabbing; 
    background-color: rgba(0, 0, 0, 0.05);
}

.form-check-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0.5rem; 
}

label {
    min-width: 6.25rem;
    padding-left: 0.35rem;
    font-weight: 500; 
}

.form-control.small-amount {
    width: 2.5rem;
    margin-left: auto;
    border: var(--form-border);
    border-radius: 0.25rem;
    padding: 0.25rem; 
    font-size: 0.95rem; 
    background-color: var(--input-bgs);
    color: var(--headers-color);  
}

.form-check-label {
    flex: 1;
    max-width: 12.5rem;
    margin-right: 0.4475rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 0.125rem;
    color: var(--headers-color); 
    font-size: 1.1rem;
}

.form-check-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 1.55rem;
    height: 1.55rem;
    border: 0.125rem solid var(--col-lightblue);
    border-radius: 0.25rem;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s, border-color 0.2s;
    background-color: var(--input-bgs);
}

.form-check-input:checked {
    background-color: var(--col-checkbord);
    border-color: #f3ecfa;
    border-radius: 0.25rem;
    border: 0.125rem solid var(--col-lightblue);
}

.form-check-input:focus {
    outline: 0.125rem solid var(--col-lightblue);
    outline-offset: 0.125rem;
    box-shadow: none;
    border: 0.125rem solid var(--col-lightblue);
}

.form-check-input:focus {
    outline: 0.125rem solid var(--col-lightblue);
    outline-offset: 0.125rem;
    box-shadow: none;
    border: 0.125rem solid var(--col-lightblue);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}
.modal-content {
    background: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0.75rem 1.25rem 1rem 1.25rem;
    width: 80%;
    max-width: 400px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.modal-content h3 {
    font-weight: bold;
    color: var(--headers-color);
    margin-bottom: 0.5rem;
}

#close-modal-btn {
    padding: 5px 10px; 
    margin-left: 10px; 
    position: absolute; 
    top: 0; 
    right: 0;
    background: transparent; 
    border: none; 
    outline: none; 

}



 #clear-btn, #add-item-btn, .privacybtn {
    opacity: 1;
    border: none;
    padding: 0.75rem 0.3rem 0.85rem 0.3rem;
    border-radius: 0.35rem;
    font-size: 1rem;
    box-sizing: border-box;
    background-color: var(--col-addButts);
    font-weight: 500;
    color: var(--headers-color);
    transition: opacity 0.22s ease-in-out;
    line-height: 0;
    min-width: 6.5rem;
    border: var(--border-addButts); 
}

#manage-stores-btn {
    opacity: 1; 
    border: none; 
    border-radius: 0.35rem; 
    font-size: 1rem; 
    box-sizing: border-box; 
    background:transparent; 
    font-weight: 600; 
    color: var(--link-color); 
    transition: opacity 0.22s ease-in-out; 
    line-height: 1; 
}

#manage-stores-btn:hover {
    opacity: 0.6; 
}

#print-btn, #pdf-btn {
    opacity: 1;
    border: none;
    font-size: 1rem;
    box-sizing: border-box;
    background-color: transparent;
    font-weight: 600;
    color: var(--link-color);
    opacity: 1; 
    transition: opacity 0.22s ease-in-out;
}

 #clear-btn:hover, #add-item-btn:hover, .privacybtn:hover {
    opacity: 0.8;
}

#print-btn:hover, #pdf-btn:hover {
    opacity: 0.6; 
}

.privacybtn {
    margin-top: 0.75rem; 
}

.removeButtonCustom {
    opacity: 1; 
    border: none; 
    vertical-align: middle;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    font-size: 0.955rem;
    box-sizing: border-box;
    background: transparent; 
    font-weight: bold; 
    color: var(--link-color); 
    transition: opacity 0.22s ease-in-out; 
    margin-bottom: 0.35rem; 
    cursor: pointer;
    padding: 0rem 0.25rem;
    font-size: 0.80rem;
    height: 1.25rem; 
    margin-top: -0.4rem;
    padding-left: 0.4rem;
}

.privacybtn:hover {
    color: #ffffff;
}

.removeButtonCustom:hover {
    opacity: 0.6; 
}

.printListPDFContainer {
    display: flex; 
    justify-content: center; 
    /* padding: 0.75rem 1rem; */
    /* background-color: var(--col-grayish);  */
    margin-left: 1.3rem; 
}

.categoryDiv {
    border-radius: 0.625rem; 
    padding: 0.625rem; 
    margin: 0.625rem; 
    max-width: 20.3125rem; 
}
 
.btn-primary {
    background-color: var(--col-lightblue);
    border: none;
    opacity: 1; 
    transition: opacity 0.33s ease-in-out; 
    color: var(--white-text); 
    opacity: 1; 
    transition: opacity 0.33s ease-in-out; 
    border: none; 
    border: 0.0625rem solid var(--col-darkblue); 
    width: 48.5%; 
    vertical-align: middle;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    padding: 0 1rem;
    border-radius: 1.25rem;
    font-size: 0.955rem;
    font-weight: 500;
    box-sizing: border-box;
    font-weight: bold; 
    transition: background-color 0.25s ease-in-out; 
}

.btn-primary:hover {
    background-color: var(--col-buttHover);
}

.btn-secondary {
    background-color: #5D088F;
    border: none;
    transition: opacity 0.33s ease-in-out; 
    opacity: 1; 
}

.btn-secondary:hover {
    background-color: #C085FA;
    opacity: 0.8; 
}

#clear-other-btn {
    background-color: #C085FA;
    border: none;
    opacity: 1; 
    transition: opacity 0.33s ease-in-out; 
    color: var(--white-text); 
    border-radius: 0.625rem; 
}

#clear-other-btn:hover {
    opacity: 0.8; 
}

nav {
    display: flex; 
    position: relative;
}

.logoArea {
    display: flex; 
    align-items: center; 
    cursor: pointer;
    opacity: 1; 
    transition: opacity 0.33s ease-in-out; 
}

.logoArea:hover {
    opacity: 0.6; 
}

.logoArea span {
    font-size: 1.45rem;
    font-weight: 600; 
    letter-spacing: 0.025rem;
    color: var(--white-text); 
    margin-left: 0.4rem;
    padding-top: 0.05rem;
    margin-bottom: -0.015rem; 
 
}

.topHeader {
    width: 100%;
    color: var(--white-text); 
    border-bottom: 0.1875rem solid #0d4a91; 
    display: flex; 
}

.topHeaderSubContainer {
    display: flex; 
    justify-content: center;
    background-color: var(--col-darkblue); 
}

.topHeaderSub {
    width: 70rem;
    margin: auto;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--col-darkblue); 
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    font-size: 1.25rem;
    opacity: 1; 
    transition: opacity 0.33s ease-in-out; 
    border: none; 
    background-color: transparent;  
    color: var(--white-text);
    margin-top: -0.1rem;
}

@media (width < 36rem) {
    .logoArea img {
        width: 2rem;
        height: auto;
        padding-right: 0.25rem; 
        padding-bottom: 0.2rem;
    }

    .logoArea span {
        font-size: 1.2rem; 
        margin-left: 0.275rem;
    }

    .dropdown-toggle {
        font-size: 1.2rem; 
    }
}

.dropdown-toggle:hover {
    opacity: 0.7; 
}

.dropdown-toggle:after {
    transition: transform 0.2s ease; 
}

.hidden {
    opacity: 0;
    transform: translateY(-100%);
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 110%;
    left: -1.875rem;
    background-color: #fafafa;
    border: 0.0625rem solid #c084fc;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.15);
    padding: 0;
    margin: 0;
    list-style: none;
    max-height: 25rem; 
    width: auto;
    overflow-y: auto;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu .dropdown-item {
    display: block;
    padding: 0.625rem 0.9375rem;
    text-decoration: none;
    color: black;
    border-bottom: 0.0625rem solid #c084fc;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f6edff;
}

#categories-container h3 {
    font-weight: bold; 
    color: var(--headers-color); 
}

.categoriesAreaContainer {
    background: var(--nav-bg); 
    border-top: 0.1rem solid var(--col-buttHover); 
}

.categoriesArea {
    padding: 1rem 1rem 1rem 1rem;
    padding-bottom: 3rem;  
    margin: 0 auto;
    border-radius: 0.3125rem;
    min-height: 42.1875rem;  
}

.categories-area-header-section {
    max-width: 76.1rem; 
    margin: 0 auto; 
    
}

@media screen and (min-width: 96.875rem) {
    .categories-area-header-section {
        max-width: 99.1rem;
    }
}

@media screen and (max-width: 70rem) {
    .categoriesArea {
        border-radius: 0rem; 
        border-left: none; 
        border-right: none; 
    }
}

.catcontain {
    background-color: var(--col-grayishAndWhite); 
    border: var(--border-cats); 
    margin-right: 0.625rem;
    width: 12.5rem;
    scroll-snap-align: start;
    cursor: grab;
}

.loginButt_mainContainer {
    display: flex; 
    justify-content: center; 
    background: var(--nav-bg); 
    border-bottom: 0.1rem solid var(--col-buttHover); 
}

.loginbutt_subContainer {
    background: transparent; 
    width: 77rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0.9rem; 
}

.loginbutt_container {
    display: flex; 
    justify-content: flex-end; 
}

.loginbutt_subcontain {
    display: flex; 
}

.loginbutt_subcontain a {
    color: white; 
    text-decoration: none; 
    font-weight: 400; 
}

#loginButtHome, #registerbutthome {
    border: 0.125rem solid var(--col-lightblue); 
    vertical-align: middle;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 1.75rem;
    padding: 1rem 1rem;
    font-size: 0.925rem;
    box-sizing: border-box;
    background-color: hsl(0, 0%, 0%, 0); 
    font-weight: bold; 
    border-radius: 2rem; 
    transition: background-color 0.23s ease-in-out;
    color: #ffffff;
}

#registerbutthome {
    margin-left: 0.65rem;
}

@media screen and (max-width: 36rem) {
    #loginButtHome, #registerbutthome {
        padding: 0.25rem 0.5rem;
    }
}

#loginButtHome:hover, #registerbutthome:hover {
    background-color: var(--col-buttHover); 
}

#top {
    position: fixed; 
    border-top-left-radius: 0.625rem;
    border-top-right-radius: 0.625rem;
    border: none; 
    background: linear-gradient(to bottom, #d9d9d9, #f0f0f0);
    color: black; 
    position: fixed; 
    bottom: 0rem;
    right: 0.25rem;
    width: 4rem;
    height: 2rem;
    font-weight: bold;
    border-top: 0.125rem solid hsl(0, 0%, 0%, 0.3); 
    border-left: 0.125rem solid hsl(0, 0%, 0%, 0.3);
    border-right: 0.125rem solid hsl(0, 0%, 0%, 0.3);
}

a {
    font-weight: 600; 
    opacity: 1; 
    transition: opacity 0.33s ease-in-out; 
}

a:hover {
    opacity: 0.6; 
}

a {
    color: var(--link-color) !important; 
}

.printlistclass {
    font-size: 0.75rem; 
}

.loginFormCont {
    color: var(--col-lightblue); 
    font-weight: 700; 
    margin-right: 1rem; 
}

.clearNonCustom {
    margin-top: 0.85rem; 
}

#add-item-container {
   min-width: 20.3125rem; 
 
}

.highlight-item {
    background-color: var(--highlight-color);
    border-radius: 0.125rem; 
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 0.15625rem;

}

.clearSearch {
    color: var(--col-darkblue);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: transparent;
    transition: opacity 0.22s ease-in-out;
    opacity: 1;
    padding: 0;
}

.clearSearch:hover {
    opacity: 0.6; 
}

#searchBar {
    background-color: var(--col-grayishAndWhite) !important; 
    width: 24rem;  
    padding: 0.275rem 0.25rem;
    border-radius: 0.3rem; 
    margin-left: 0.8rem;
    margin-top:0.7rem;
}

.searchbarContainer {
    padding-left: 1rem;
    padding-bottom: 1rem;
    padding-top: 0.5rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
}

.searchbarContainer2 {
    display: flex; 
    align-items: center;
    padding-left: 1rem;
    margin-top: 0.6rem;  
}

.searchbarContainer2 p {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;   
}

#searchInput {
    border-radius: 0.625rem;
    font-size: 1rem;
    border: none;
    background-color: var(--col-grayishAndWhite);
    width: 18rem; 
    padding-left: 0.5rem;
    color: var(--headers-color); 
}

#searchInput:focus, #searchInput:active {
    border: none;
    outline: none;
    background-color: var(--col-grayishAndWhite); 

}

/* Autofill styles */
#searchInput:-webkit-autofill,
#searchInput:-webkit-autofill:hover,
#searchInput:-webkit-autofill:focus,
#searchInput:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #ffffff inset; 
    -webkit-text-fill-color: #1a1b29; 
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

#searchInput:-moz-autofill,
#searchInput:-moz-autofill:hover,
#searchInput:-moz-autofill:focus,
#searchInput:-moz-autofill:active {
    box-shadow: 0 0 0 30px #ffffff inset; 
    color: #1a1b29;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

#searchInput::placeholder {
    line-height: 1; 
    font-weight: 400; 
    font-size: 1rem; 
    color: var(--headers-color); 
}

#new-item-name::placeholder {
    line-height: 1; 
    font-weight: 400; 
    font-size: 1rem; 
    color: var(--headers-color); 
}

.search-icon {
    position: absolute;
    right: 0.625rem;
    height: 1.5rem;
    padding-top: 0.125rem;
}

.searchbarContainer h2 {
    color: var(--white-text);
    font-weight: 700;  
}

#intialMessage {
    line-height: 1; 
}

.swipeDrag1 {
    margin-top: 0.25rem;
}

.swipeDrag2 {
    margin-top: 0.25rem;
}



@media screen and (max-width: 36rem) {
    .searchbarContainer {
        flex-direction: column; 
        padding-left: 0;
    }

    .clearSearch {
        margin-left: 1.1rem; 
    }

    #searchInput {
        margin-left: 0rem; 
    }
    
    #searchBar {
        width: 21rem;
        padding-top: 0.25rem;
        position: absolute;
      
        margin-left: 0; 
        border-radius: 0.25rem;
        margin-top: 0.2rem;
        left: 1rem;
    }

    .swipeDrag2 {
        margin-top: 3rem;
        margin-bottom: 0.25rem;
    }

    .grid {
        padding: 0 0.625rem 0.625rem 0.625rem;
    }
    
    .search-container {
        justify-content: center;
    }
    
    .searchbarContainer2 {
        padding-left: 0rem;
        padding-top: 0; 
        margin-top: 0;
    }

    .swipeDrag1 {
        display: none;
    }

    
}

@media screen and (min-width: 36rem) {
    .swipeDrag2 {
        display: none; 
    }
}

.add-item-area {
    margin-top: 0.8rem; 
}

#other {
    /* border: 0.125rem solid hsl(0, 0%, 0%, 0.2);  */
    border-radius: 0.3rem;
    min-height: 2.9rem; 
    width: 100%; 
    /* background-color: var(--col-grayishAndWhite); */
    padding: 0rem 0.25rem 0.25rem 0.25rem;
}

#other > :nth-child(1) {
    border-top: none; 
    border-bottom: none;
}

.otherContainerHolder {
    width: 100%; 
    max-width: 73.125rem; 
    margin: auto; 
    margin-top: 1.5rem; 
    margin-bottom: 2.85rem; 
}

#new-item-name {
    border-radius: 0.3rem; 
    padding: 0.53rem; 
    border: none; 
    border: 0.125rem solid hsl(0, 0%, 0%, 0.2);
    width: 100%; 
    font-size: 1rem; 
    background: var(--col-grayishAndWhite) !important; 
    color: var(--headers-color); 
}

#store-dropdown {
    background: var(--col-grayishAndWhite) !important;
    color: var(--headers-color) !important;  
    border-radius: 0.3rem;
}

#new-item-name::placeholder {
    font-size: 1rem; 
    color: var(--headers-color); 
}

#new-store-name::placeholder {
    color: var(--headers-color); 
}

.listarea article {
    box-shadow: var(--article-boxshad);
    background-color: var(--article-bg); 
    padding: 0.5rem 0.75rem 0.5rem 0.75rem;
    border-radius: 0.625rem; 
    position: relative; 
    width: 100%;
    max-width: 400px; 
    margin: 0 0.5rem 0 0.5rem;
}

.listarea h2 {
    font-weight: bold; 
    color: var(--headers-color);
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
    
}

#other h4 {
    font-weight: bold; 
    color: var(--headers-color); 
}

/* .addcustom {
    max-height: 10.9375rem; 
} */

.loginFormCont {
    max-width: 77rem; 
}

@media screen and (min-width: 75rem) {
    #top {
        right: 8%;
        border-top-left-radius: 0.625rem;
        border-top-right-radius: 0.625rem;
    }
}

@media screen and (min-width: 143.75rem) {
    #top {
        right: 22%;
        border-top-left-radius: 0.625rem;
        border-top-right-radius: 0.625rem;
    }
}

@media screen and (max-width: 50rem) {
    .listarea {
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        
        margin: 0 0.5rem 0 0.5rem;
        padding-top: 0.4rem;
    }

    .listarea article {
        width: 100%;
        max-width: 425px;
    }

    .happyImg {
        display:none;
    }


    .addcustom {
        margin-top: 2rem !important;
        width: 20.3125rem; 
    }

    #other {
       width: 100%;
    }

    .loginbutt_subContainer {
        padding: 0.7rem 0.9rem;
    }

  
}

@media screen and (min-width: 50.0625rem) {
    .listarea {
        display: flex; 
        justify-content: space-around; 
    }

    .addcustom {
        width: 22.25rem; 
    }
}

footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background: var(--body-bg); 
    border-top: 0.1875rem solid var(--col-darkblue); 
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; 
}

.foot_container {
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 0.65rem;
    display: flex; 
    align-items: center;
}

.foot_container img {
    width: 3.75rem;
    height: auto; 
}

.foot_container h2 {
   margin-top: 0.25rem; 
   padding-left: 0.1rem; 
   letter-spacing: 0.05rem;
   font-weight: bold; 
   color: var(--headers-color); 
}

#year {
    color: var(--headers-color);    
}

.copyr-area a {
    text-decoration: none; 
    color: var(--col-lightblue); 
    opacity: 1; 
    transition: opacity 0.33s ease-in-out; 
}

a:hover {
    opacity: 0.6; 
}

.copyr-area {
    max-width: 70rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;  
    padding-left: 1.35rem;
}

#privacyHolder {
    display: none; 
}

#privacywritten {
    display: flex; 
    max-width: 26.5625rem; 
    padding-top: 1rem;
    padding-right: 0.5rem; 
}

.privacyzone {
    max-width: 70rem;
    display: flex; 
    flex-direction: column; 
}

.category-group {
    margin-top: 0.25rem; 
    margin-bottom: 1.25rem; 
    border-top: 0.0625rem solid var(--col-buttHover);
}

.category-group h4 {
    margin-bottom: 0.50rem; 
    margin-top: 0.5rem;
    font-size: 1.25rem; 
}

#category-custom h4 {
    margin-bottom: 0.3rem; 
}

#not-found-message {
   text-align: center;
   margin-top: 1.25rem;
   color: #ffffff;
   font-weight: bold;
   font-size: 2rem;
}

.signInFunn {
    display: flex; 
    justify-content: space-between; 
    width: 77rem; 
    margin-top: 0.5rem;
}

.printPdfContainerTop {
    display: flex; 
    justify-content: center; 
    padding-top: 0.25rem;
}

@media screen and (max-width: 768px) {
    #searchInput {
        max-width: 200px; 
    }

    .printPdfContainerTop {
        margin-top: 0.25rem; 
        margin-bottom: 0.25rem;
    }

    .otherContainerHolder {
        margin-top: 0.45rem;
    }

    #clear-btn, #add-item-btn, .privacybtn {
        opacity: 1;
        border: none;
        padding: 0.35rem 0rem 0.4rem 0rem;
        border-radius:0.35rem;
        font-size: 0.875rem;
        box-sizing: border-box;
        background-color: var(--col-addButts);
        font-weight: 700;
        color: var(--headers-color);
        transition: opacity 0.22s ease-in-out;
        line-height: 1;
        min-width: 6.25rem;
        border: var(--border-addButts);
    }

    .loginFormCont {
        display: none; 
    }

    .signInFunn {
        justify-content: center; 
    }

    .listarea h2 {
        font-size: 1.3rem; 
        margin-bottom: 1rem; 
    }

    #other {
        min-height: 2.9rem;
        padding: 0rem 0.5rem 0.625rem 0.5rem;
    }

     #new-item-name {
        min-height: 2.9rem;
        padding: 0.5rem 0.625rem;
    }
    
    #print-btn {
        margin-right: 0.5rem; 
 
    }

    #pdf-btn {
        margin-left: 0.5rem;
    }

    .printListPDFContainer {
        margin-left: 0rem; 
    }
}

@media screen and (min-width: 768.1px) {
    .signInFunn {
        margin-left: 1rem; 
    }
}

@media screen and (max-width: 36rem) {
    #not-found-message {
        font-size: 1rem;
    }
}

@media screen and (min-width: 96.875rem) {
    .loginbutt_subContainer {
        width: 100rem;
    }

    .signInFunn {
        width: 100rem; 
    }

   
}