@import url('https://fonts.googleapis.com/css2?family=Caudex:ital,wght@0,400;0,700;1,400;1,700&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
font-family: "Public Sans", sans-serif;
}

body {
font-family: "Public Sans", sans-serif;

    font-style: normal;

}

h1,
h2,
h3,
h4,
h5,
h6,
th,
strong {
    font-family: "Caudex", serif;
}

.sidebar_all {
    position: fixed;
    top: 0;
    left: 0;
    width: 20%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding-block: 25px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: none;
    z-index: 68;
    overflow-y: scroll;
}

.logo {
    height: 200px;
    width: 300px;
    margin-block: 30px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/logo.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    /* height: 55%; */
}

.ll {
    border-top: 2px solid #534f4f2a;
}

.links a {
    border-bottom: 2px solid #534f4f2a;
    width: 100%;
    padding: 0 10%;
    text-decoration: none;
    padding-block: 10px;
    color: #000;
    font-weight: 400;
}

.links h3 {
    padding: 0 10%;
    padding-block: 10px;
    background-color: #c8af66;
    text-transform: uppercase;
    color: #fff;
}

.links a:hover {
    background-color: #c8af665a;
    color: #000;
}



#toggleButton {
    padding: 10px;
    border: none;
    background-color: transparent;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    position: absolute;
    z-index: 332;
    position: fixed;
    background-color: #c8af66;
    top: 0;
}

.log {
    background-color: red;
    color: #fff !important;
    /* position: absolute;
    bottom: 50px; */
}

.log:hover {
    background-color: red !important;
}

#toggleButton i {
    font-size: 20px;
    color: #fff;

}

.receipt_forms {
    padding: 0 10%;
    margin-top: 70px;
}

.forms {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.forms input {
    height: 50px;
}

.forms select {
    height: 50px;
}

.revenue_summary_all,
.monthly_revenue,
.yearly_revenue,
.manage_all,
.create_invoice_all,
.view_invoices_all {
    padding: 0 5%;
    margin-top: 70px;
}

.revenue_title {
    margin-bottom: 50px;
    text-align: center;
}

.revenue_title h1 {
    font-size: 50px;
}

.revenue_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.revenue {
    padding: 0 5%;
    padding-block: 50px;
    margin-bottom: 50px;
    width: 95%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: #c8af66;
    color: #fff;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th,
td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

th {
    background-color: #f2f2f2;
}

.actionss {
    display: flex;
    gap: 20px;
}

.invoice_table button {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.invoice_table {
    margin-bottom: 50px;
}

.invoice_table input {
    height: 50px;
    width: 100%;
}


.forms button {
    height: 50px;
    width: 100%;
    background-color: #c8af66;
    border: none;
    color: #000;
    text-transform: uppercase;
    font-family: "Caudex", serif;
    font-weight: 900;
}


.search{
    
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-block: 50px;
}

.search input{
    height: 50px;
    margin-bottom: 20px;
    padding-left: 2%;
    
}

input:focus{
    outline: none;
}

.search button{
    height: 50px;
background-color: #c8af66;
border: none;
color: #fff;
text-transform: uppercase;
font-family: "Caudex", serif;
}

input[type="submit"]{
background-color: #c8af66;
color: #fff;
text-transform: uppercase;
    font-family: "Caudex", serif;
    border: none;
}
    
.powered a{
    color: #c8af66;
    text-decoration: none;
}
  .lists {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
   
  }

  .lists a {
      width: 95%;
      background-color: #c8af66;
      padding: 15px 45px;
      text-align: center;
      border-radius: 50px;
      text-decoration: none;
      color: #fff;
        margin-block: 30px;
  }
@media only screen and (max-width: 1110px) {
    .sidebar_all {
        width: 70%;
    }
    .revenue_grid{
        display: grid;
        grid-template-columns: 1fr;
    }
    .revenue{
        width: 100%;
    }
          .lists {
              display: grid;
              grid-template-columns: 1fr  ;
              margin-block: 30px;
          }
}