/* Resetting default browser styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Sidebar styles */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 80px;
    background-color: #232323;
    padding-top: 20px; /* Height of the header */
    display: block;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar li {
    padding: 10px 0;
    text-align: center;
    text-align: -webkit-center;
    line-height: 54px;
}

.sidebar li:nth-child(3){
    position: fixed;
    bottom: 90px;
    width: 80px;
    left: 0px;
}


.sidebar a {
    text-decoration: none;
    color: #ffff;
    display: block;
}


.web_logo{
    width:70%;
}

.grid_logo{

    width: 24%;
}
/* Content styles */
main {
    margin-left: 80px; /* Width of the sidebar */
  
}

/* slider banner styles */
.slider-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.slide {
    flex: 0 0 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
}

.controls {
    position: fixed;
    bottom: 0px;
    left: 0px;
    background-color: #f6c13c;
    width: 300px;
    height: 80px;
    padding: 184px auto;
    padding: 1.5rem;
    padding-left: 1rem;
    color: white;

}

.controls button{
    background: transparent;
    border-style: none;
    max-width: 80px;
    margin-left: 1rem;

}

.count {
    display: inline-block;
    margin: 0 10px;
}

button {
    font-size: 1.5em;
    cursor: pointer;
}
picture>img {
    width:100vw;
    height: 100vh;
    display: block;
}

.topbar{

    display: none;
}

.grid_logo_controls{display: none;}




/* Media queries for mobile devices */
@media only screen and (max-width: 767px) and (orientation: portrait) {
    /* Styles for mobile devices in portrait orientation */
    .sidebar {

        display: none;
    }

    main {
        margin-left: 0px; /* Width of the sidebar */
      
    }

    .controls {
       
        width: 100%;
        height: 60px;
        padding: 6px;
        /* padding-left: 15%; */
        color: white;
        display: grid;
        grid-template-columns:  1fr 1fr 1.2fr 1.2fr 1fr;
        align-items: center;
        /* gap: 0rem; */
        justify-items: center;
    
    }
    
    .controls button{
        background: transparent;
        border-style: none;
        max-width: 200px;
        margin-left: 0rem;
    
    }

    

    .website_logo{
        width:120px;
    }
 
    .website_grid{
        float: right;
        width: 30px;
        padding: 4px;
    }

    .grid_logo_controls{
        display:block;
        width: 1.6rem;
    }

    picture>img {
        width:100vw;
        height: 100svh;
        display: block;
    }
  
     #install-popup {
    position: absolute;
    /* top: 0; */
    /* left: 0; */
    bottom: 70px;
    width: 100%;
    height: 68px;
    background-color: rgb(246 193 60);
    grid-template-columns: 4fr 2fr 1fr;
 
    gap: 16px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    padding:10px;
        display: flex;
    /* padding: 10px; */
    justify-content: space-evenly;
    align-items: center;
}

#install-popup.visible {
  opacity: 1;
  visibility: visible;
}

#install-popup button {
background-color: #ffffff;
    color: #000;
    padding: 6px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 20px;
  
}

}

/* Media queries for mobile devices in landscape orientation */
@media only screen and (max-width: 767px) and (orientation: landscape) {
    /* Styles for mobile devices in landscape orientation */
  
}

/* Media queries for tablet devices */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    /* Styles for tablet devices */
  
}
