body {
    margin: 0;
    padding: 0;
    background-color: rgb(14, 6, 31);
    color: rgb(245, 248, 248);
    font-family: "Agdasima", sans-serif;

}

.material-icons-outlined {
    vertical-align: middle;
    line-height: 1px;
    font-style: 35px;
    cursor: pointer;
}

.grid-container {
    display: grid;
    grid-template-columns: 220px 1fr 1fr 1fr;
    grid-template-rows: 0.2fr 3fr;
    grid-template-areas:
     "sidebar header header header"
     "sidebar main main main";
    height: 100vh; 
    
}


/* ----------- HEADER ----------- */
.header {
    grid-area: header;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px 0 30px;
    box-shadow: 0 6px 7px -3px rgba(12, 9, 9, 0.35);
    border-bottom: 3px solid rgb(1, 185, 252)
}

.menu-icon {
    display: none
}


/* ------------- SIDEBAR -----------*/
#sidebar {
    grid-area: sidebar;
    height: 100%;
    background-color:rgb(14, 6, 31);
    overflow-y: auto;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    border-right: 3px solid rgb(1, 185, 252);
}

.sidebar-title {
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 30px 30px;
    margin-bottom: 30px;

}

.sidebar-title > span {
    display: none;
}

.sidebar-brand {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 700;
}

.sidebar-list {
    padding: 0;
    margin-top: 15px;
    list-style-type: none;

}

.sidebar-list-item {
    padding: 20px 20px 20px 20px;
    font-size: 18px;
    border-radius: 25px;

}

.sidebar-list-item:hover {
    background-color: rgb(1, 185, 252);
    cursor: pointer;
}

.sidebar-responisive {
    display:inline !important;
    position: absolute;
    z-index: 12 !important;
}

/* ------------- MAIN -----------*/
.main-container {
    grid-area: main;
    overflow-y: auto;
    padding: 20px 20px;
    background-color:rgb(22, 17, 34);
    
}

.main-title {
    display: flex;
    justify-content: space-between;
}

.main-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin: 20px 0;

}

.card {
    display: flex;
    flex-direction: grid;
    justify-content: space-around;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 6px 6px 6px rgb(252, 122, 1);  
}

.card:hover {
    background-color: rgb(21, 42, 51);
    cursor: pointer;   
}

.card:first-child {
    background-color: rgb(14, 6, 31);
}

.card:first-child:hover {
    background-color: rgb(1, 185, 252);
}

.card:nth-child(2) {
    background-color: rgb(14, 6, 31);
}

.card.card:nth-child(2):hover {
    background-color: rgb(1, 185, 252);
}

.card:nth-child(3) {
    background-color: rgb(14, 6, 31);
}

.card:nth-child(3):hover {
    background-color: rgb(1, 185, 252);
}

.card:nth-child(4) {
    background-color: rgb(14, 6, 31);
}

.card:nth-child(4):hover {
    background-color: rgb(1, 185, 252); 
}

.card:nth-child(5) {
    background-color: rgb(14, 6, 31);
}

.card:nth-child(5):hover {
    background-color: rgb(1, 185, 252);
}

.card-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.card-inner > .material-icons-outlined {
    font-size: 45px;
}
