@import url('https://fonts.googleapis.com/css2?family=Caudex:ital,wght@0,400;0,700;1,400;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "DM Sans", sans-serif;
}

body {

    font-family: "DM 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: #f2f2f2;
    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: 100px;
    width: 250px;
    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;
    margin-top: 70px;
}

.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:  #feda08;
    text-transform: uppercase;
    color: #000;
}

.links a:hover {
    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:  #feda08;
    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: #000;                                                                                               

}

.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:  #feda08;
    color: #000;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th,
td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

th {
    background-color: #feda08;
}

.actionss {
    display: flex;
    gap: 20px;
}

.invoice_table button {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #fff;
}



.invoice_table {
    margin-bottom: 50px;
}

.invoice_table input {
    height: 50px;
    width: 100%;
}


.forms button {
    height: 50px;
    width: 100%;
    background-color:  #feda08;
    border: none;
    color: #000;
    text-transform: uppercase;
    font-family: "Caudex", serif;
    font-weight: 900;
}

