/****************Global*************/
:root{
    --blueprimary: #035aa6;
    --redprimary: #dc1e5a;
    --greymain: #efefef;
    --orangeprimary: orange;
    --greenhover: #47a300;
    --borderradious: 6px;
    --grey: grey;
    --blueaccent: #0482f0;
    --redaccent: #ff3575;
    --greyaccent: rgba(214, 214, 214, 0.788);
    --orangeaccent: rgb(230, 152, 9);
}

html, body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
}

.blank{
    padding-left: 20px;
}
/****************************/

header{
    display: flex;
    flex-direction: row nowrap;
    width: 100%;
    height: 10%;
}

.upperbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-left: 5%; 
    padding-right: 5%;  
}

.upperbar img{
    width: 8%;
}

.topbtns{
    display: flex;
    flex-flow: row nowrap;
    gap: 1rem;
    justify-content: center;
    width: fit-content;
}

.topbtn{
    display: inline-block;
    color: white;
    padding: 0.4rem 1.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    border:1px solid #cfcfcf;
    border-radius: 40px;
    cursor: pointer;
    box-sizing: border-box;
    text-decoration: none;
    text-align: center;
    background-color: var(--blueprimary);
    box-sizing: border-box;
    min-width: 50%;
    white-space: nowrap;
}

.topbtn:hover{
    background-color: var(--blueaccent);
    transition: 0.3s;
}

.topbtn:active{
    transform: scale(0.95);
    transform: 0.2s;
}
/****************************/

footer{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 3%;
    position: fixed;
    bottom: 0;
}

.bottomnav{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding-left: 5%;
    padding-right: 5%;
    background-color: var(--blueprimary);
    color: white; 
    font-size: 0.8rem;
}

.rights{
    justify-content: flex-start;
}

.whatsapp{
    justify-content: flex-end;
}

/****************************/

@media only screen and (max-width: 600px) {
    .upperbar img{
        width: 20%;
        padding-left: 5%;
    }

    .rights {
      display: none; /* Hide the rights div */
    }
    
    .whatsapp {
      justify-content: center; /* Center the elements */
      width: 100%; /* Make the whatsapp div take full width */
      text-align: center;
    }
  }

  /*****************************************/
  /* Styles the entire scrollbar */
::-webkit-scrollbar {
    width: 15px; /* Adjust width for vertical scrollbar */
    height: 12px; /* Adjust height for horizontal scrollbar */
}

/* Styles the track (background) of the scrollbar */
::-webkit-scrollbar-track {
    background: #efefef; /* Light background color for the track */
    border-radius: 10px;
}

/* Styles the scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
    background-color: #035aa6; /* Blue color for the thumb */
    border-radius: 10px; /* Rounded edges */
    border: 3px solid #efefef; /* Adds padding around the thumb */
}

/* Optional: Hover effect for the scrollbar thumb */
::-webkit-scrollbar-thumb:hover {
    background-color: #034b8a; /* Darker shade on hover */
}