@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Syne:wght@400..800&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
font-family: "Manrope", sans-serif;
}

body {
font-family: "Public Sans", sans-serif;

    font-style: normal;

}

h1,
h2,
h3,
h4,
h5,
h6,
th,
strong {
font-family: "Syne", sans-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: 250px;
    width: 300px;
    margin-block: 30px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/logo.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.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;
    background-color: #f2f2f2;
}

.links h3 {
    padding: 0 10%;
    padding-block: 10px;
    background-color:  #008037;
    text-transform: uppercase;
    color: #fff;
}

.links a:hover {
    background-color:  #008037;
    background-color: #fff;
    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:  #008037;
    top: 0;
}

.log {
    background-color: #008037;
    color: #fff !important;
    /* position: absolute;
    bottom: 50px; */
}

.log:hover {
    background-color:#fff;
}

#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:  #008037;
    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:  #008037;
    border: none;
    color: #000;
    text-transform: uppercase;
    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:  #008037;
border: none;
color: #fff;
text-transform: uppercase;

}

input[type="submit"]{
background-color:  #008037;
color: #fff;
text-transform: uppercase;
    border: none;
}
    
.powered a{
    color:  #008037;
    text-decoration: none;
}
  .lists {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
   
  }

  .lists a {
      width: 95%;
      background-color:  #008037;
      padding: 15px 45px;
      text-align: center;
      border-radius: 50px;
      text-decoration: none;
      color: #fff;
        margin-block: 30px;
  }

          .ccc {
              display: flex;
              gap: 20px;
              align-items: center;
          }
    
          .inn input {
              width: 100%;
              padding-left: 3%;
          }

          .forms th{
            background-color: #008037;
            color: #fff;
          }

          .forms select, input{
            border: 1px solid #008037;
            padding-left: 3%;
          }

          .forms select:focus{
            outline: none;
          }
          th{
            background-color: #008037 !important;
            color: #ddd !important;
          }
@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;
          }
}