*{
    margin: 0;
    padding: 0;
}

/*Custome ScroolBar*/
::-webkit-scrollbar {
    width: 4px;
  }
  
  /* Track */
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #9a9a00;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #ffff00;
  }
  
  /* End Here */

body{
    background: url(../img/jeddah-bg.webp) fixed;
    background-size: cover;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.full{
    width: 100%;
}

.container-header{
    width: 100%;
    background: yellow;
}

.container-header .header{
    text-align: center;
}

.logo{
    width: 340px;
    height: 100px;
}

.container-header .navbar{
    padding: 20px 0px;
    background: linear-gradient(to bottom, gold, rgb(251, 251, 127));
    border-top: 2px solid rgb(139, 139, 0);
    border-bottom: 2px solid rgb(139, 139, 2);
    text-align: center;
}

.container-header .navbar a{
    padding: 5px 5px;
    margin: 0px 8px;
    text-decoration: none;
    font-weight: bolder;
    color: black;
    transition: .1s;
    border-radius: 30px;
}

.container-header .navbar a:hover{
    border-bottom: 4px solid black;
}

.container-body{
    margin: 10px 200px;
}

.banner{
    width: 100%;
    border: 3px solid white;
    box-shadow: 0px 0px 10px 2px black;
}

.container-flex{
    display: flex;
    border: 4px double black;
    background: linear-gradient(to bottom, gold, rgb(251, 251, 127));
    padding: 10px;
    box-shadow: 0px 0px 10px 2px black;
}
.container-flex .righty, .container-flex .lefty{
    width: 100%;
    padding: 5px;
}

.lefty .header-table, .righty .header-table{
    font-weight: bolder;
    font-size: 23px;
    padding: 5px 0px 5px 3px;
    border-left: 5px solid black;
    border-bottom: 5px double rgb(0, 0, 0);
}

.lefty .table-today{
    margin: 10px 0px 0px 0px;
    font-size: 21px;
    font-weight: bolder;
    border-spacing: 0;
}
.lefty .table-today .price{
    margin-left: 20px;
}

.lefty .table-today tr td{
    height: 70px;
    border-bottom: 2px solid black;
}

.lefty .table-today .price .toto{
    background: linear-gradient(to bottom, rgb(68, 255, 0), rgb(135, 255, 167));
    color: black;
    margin: 0px 0px 0px 10px;
    float: left;
    font-weight: bolder;
    padding: 10px 18px;
    border-radius: 50%;
    box-shadow: 0px 2px 8px 1px black;
}

.righty{
    font-size: 23px;
}

.righty .tabs{
    height: 380px;
    overflow: auto;
}

.tabs .box{
    margin: 10px 0px 0px 0px;
}

.tabs .date-history{
    text-align: center;
    font-weight: bolder;
}

.table-history{
    width: 100%;
    font-weight: bolder;
    border-spacing: 0;
    border: 2px solid gray;
}

.table-history tr{
    height: 40px;
}

.table-history tr:nth-child(even){
    background: green;
    color: white;
}

.table-history tr:nth-child(odd){
    background: rgb(0, 189, 0);
    color: white;
}

.table-history thead th{
    background: linear-gradient(to bottom, rgb(0, 255, 0), green);
}

.table-history tr td{
    padding-left: 10px;
}

.container-history{
    font-weight: bolder;
    color: black;
    background: linear-gradient(to bottom, gold, rgb(251, 251, 127));
    padding: 10px;
    border: 2px solid white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 2px black;
}

.container-history .header-history{
    text-align: center;
    font-weight: bolder;
    color: black;
    font-size: 26px;
}

.tabs-history{
    height: 500px;
    overflow: auto;
}

.tabs-history .all-history-table{
    width: 100%;
    border: 2px solid grey;
    border-spacing: 0;
    border-collapse: collapse;
    text-align: center;
}

.all-history-table th {
    background: linear-gradient(to bottom, rgb(131, 255, 131), rgb(59, 179, 59));
    padding: 10px 0px;
    position: sticky;
    font-weight: bolder;
    text-align: center;
    top: 0;
}

.all-history-table tr{
    border: 2px solid grey;
    height: 40px;
}

.all-history-table tr:nth-child(even){
    background: rgb(66, 188, 66);
}

.all-history-table tr:nth-child(odd){
    background: rgb(115, 255, 115);
}

.banner-footer{
    margin-top: 10px;
}

.gif{
    width: 100%;
    border: 2px solid grey;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 2px black;
}

.container-article{
    background: linear-gradient(to bottom, gold, rgb(251, 251, 127));
    padding: 20px;
    border: 2px solid grey;
    border-radius: 10px;
    text-align: right;
}

.article h1{
    text-align: center;
    margin-bottom: 15px;
}

.article p{
    margin-bottom: 10px;
}

.copyright{
    color: black;
    font-weight: bolder;
    text-align: center;
    margin: 20px 0px;
}
.copyright span{
    border: 2px solid white;
    background: radial-gradient(circle, #ffff00, #ffff94);
    padding: 10px;
    box-shadow: 0px 0px 10px 2px black;
}

@media screen and (max-width:1150px) {
    .container-body{
        margin: 10px 100px;
    }
}

@media screen and (max-width:950px) {
    .container-body{
        margin: 10px 10px;
    }
}

@media screen and (max-width:750px) {
    .container-flex{
        display: block;
    }
    .righty{
        font-size: 23px;
    }
    .lefty .table-today .price .toto{
        background: linear-gradient(to bottom, rgb(68, 255, 0), rgb(135, 255, 167));
        color: black;
        margin: 0px 0px 0px 10px;
        float: left;
        font-weight: bolder;
        padding: 6px 14px;
        border-radius: 50%;
        box-shadow: 0px 2px 8px 1px black;
    }
}