@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
}

header{
    width: 100%;
    /* background-color: #a7000f; */
    /* background: url(./assets/Background.png); */
    display: flex;
    justify-content: center;
    /* position: fixed; */
    /* margin-bottom: 1150px; */
    color: black;
    /* box-shadow: 0 2px 4px 0 rgba(0,0,0,.1); */
}
nav{
    width: 98%;
    display: flex;
    align-items: center;
    column-gap: 10px;
    justify-content: space-between; 

}
.nav-l{
    width: 50%;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.logo-dash{
    width: 150px;
    padding: 10px;
    /* border-radius: 50%; */
}
.dash-title{
    
    /* text-decoration: overline; */
    /* text-decoration-style: dotted; */
}
.nav-r{
    width: 50%;
}
.logout{
    background-color: red;
    border: 0px solid transparent;
    width: 150px;
    height: 40px;
    float: right;
    border-radius: 15px;
    color: white;
    font-weight: 600;
}
body{

    display: flex;
    flex-direction: column;
    /* row-gap: 150px; */
}
.main{
    margin-top: 10px;
    display: flex;
    /* flex-direction: row; */
    min-height: 100vh;
    column-gap: 30px;
    /* z-index: 100; */
    /* margin-top: 10%; */
}
.left-panel{
    width: 20%;
    background-color: rgb(213, 213, 45);
    /* background: url(./assets/Background.png); */
    box-shadow: 1px 1px 15px 15px rgba(0,0,0,.2);

    height: auto;
    border-radius: 0 60px 60px 0;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    /* border: 1px solid #ba3000; */


}

.lp-ms{
    display: flex;
    flex-direction: column;
    /* padding-top: 35px; */
    row-gap: 30px;
    /* height: 40%; */
    text-align: center;
    justify-content: center;
    align-items: center;

}
.lp-ms a{
    text-align: center;
    width: 65%;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid black;
    text-decoration: none;
    list-style: none;
    color: black;
}
.lp-ms li a{
    color: black;
 text-decoration: none;
}
.lp-ms li a:hover{
    font-weight: 600;
    color: white;
}

/* Right panel starts from here */
.right-panel{
    width: 80%;
    min-height: 100vh;

    border-radius: 0 0 15px 15px;
   
}
.rp-card{
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    column-gap: 7%;
    flex-wrap: wrap;
    row-gap: 100px;
    /* text-align: center; */
    justify-content: space-evenly;
}
.rp-cards{
    /* margin: auto; */
    display: flex;
    height: 100px;
    width: 30%;
    border: 1px solid black ;
    border-radius: 10px 10px 5px 5px;
    border-bottom: 10px solid rgb(213, 213, 45);
    align-items: center;
    justify-content: center;
}
.rp-cards a{
    text-decoration: none;
    color: black;
}


/* Right panel starts Ends here */
.category{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.subcategory{
    display: flex;
    flex-direction: column;
    row-gap: 10px;

}
.rp-sep{
    display: flex;
    flex-direction: column;
    /* flex-wrap: wrap; */
    column-gap: 30px;
    row-gap: 30px;
    align-items: center;
    justify-content: center;
    /* width: 95%; */
    margin: 5px;
}
.foldone{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}
.foldtwo{
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: space-evenly;

}
.foldthree{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}
.removecat{
    display: flex;
    flex-direction: column;
    border: 1px solid black;
    width: 250px;
    /* justify-content: center; */
    align-items: center;

}
.removecat h3{
    margin-bottom: 10px;
    border-bottom: 3px solid black;
}
.addcat{
    display: flex;
    flex-direction: column;
    border: 1px solid black;
    width: 250px;
    /* justify-content: center; */
    align-items: center;

}
.addcat h3{
    margin-bottom: 10px;
    border-bottom: 3px solid black;
}
.removesubcat{
    display: flex;
    flex-direction: column;
    border: 1px solid black;
    width: 250px;
    /* justify-content: center; */
    align-items: center;

}
.removesubcat h3{
    margin-bottom: 10px;
    border-bottom: 3px solid black;
}
.addsubcat{
    display: flex;
    flex-direction: column;
    border: 1px solid black;
    width: 250px;
    /* justify-content: center; */
    align-items: center;

}
.addsubcat h3{
    margin-bottom: 10px;
    border-bottom: 3px solid black;
}
footer{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    /* background-color: #F0EDCF; */
    /* color: white; */
    padding: 20px;
    /* min-width: 100vw; */
    /* text-align: center; */
}
.f-text{
    font-size: 40px;
    padding-left: 10px;
    text-align: center;
    margin-bottom: 10px;
}
.curs{
    font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}