*, body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/*################################################ global styling*/
:root {
    --nav-bg: #213448;
    --modal-bg: #A3DC9A;
    --black: black;
    --white: #fff;
    --bodyBg: #333446;
    --graph-bg-1: #45999061;
    --placeholder-bg: #3a4b67a8;
}

body {
    background: var(--bodyBg);
}

.text-center {
    text-align: center;
}

a {
    text-decoration: none;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.display-none {
    display: none !important;
}

.flex-center {
    display: flex;
    justify-content: center;
}

/*################################################ global styling ------- */

/*################################################ PlaceHolder*/
#placecards-container {
    display: flex;
    justify-content: space-evenly;
    margin-top: 2rem;
    padding: 1rem 0;
    background-image: url("/images/placecards-bg-1.jpg");
    background-size: cover;
}

.placeholder {
    height: 100px;
    padding: 0.5rem;
    background: var(--placeholder-bg);
}
/*################################################ PlaceHolder ------------*/

/*################################################ Graph Section*/
#graphs-section {
    margin-top: 2rem;
    padding: 1rem 2rem;
    grid-gap: 1rem;
    background-image: url("/images/graph-bg-1.jpg");
    background-size: cover;
}
/*--------- PieChart*/
#categorywise-expense-piechart {
    padding: 1rem;
    background: var(--graph-bg-1);
    border-radius: 4px;
}

#expensePieChart {
    height: 400px !important;
    width: 400px;
}
/*---------- bargraph*/
#timelapsewise-total-expense {
    padding: 1rem;
    background: var(--graph-bg-1);
    border-radius: 4px;
}

#expenseBarChart {
    height: 400px !important;
    width: 400px;
}
/*################################################ Graph Section ----------*/

/*################################################ Recent Transaction*/
#recent-transactions-container {
    border: 1px solid black;
    margin-top: 2rem;
    padding: 2rem;
}
.single-transaction{
    border:1px solid red;
}
.expense-name {
    color: red;
}
.expense-cost{
    color:green;
}
.expense-time{
    color:blue;
}
#add-recurring-btn{
    margin-top:1rem;
}
/*################################################ Recent Transaction ------*/
/*################################################ Model/

/*################################################ Model --------- */
#model-container {
    width: 100vw;
    height: 100vh;
    background: var(--modal-bg);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
}
/*################################################ Header */
#header {
    background-color: var(--nav-bg);
    display: flex;
    justify-content: space-between;
    padding: 10px 2rem;
}

#header #brand a {
    font-size: 20px;
    color: var(--white);
}
/*################################################ Header ------- */

/*################################################ Footer*/
#footer {
    background-color: var(--nav-bg);
}
/*################################################ Footer --------*/

/*################################################*/
/*################################################*/
/*################################################*/
/*################################################*/
/*################################################*/
/*################################################*/
