  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
:root{
--text-dark:#000;
--text-light: #7aa7a6;
--body-background:#ffff;
--body-foreground:#008080;
--shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
--dark-border:rgba(0,0,0,0.2);
   --soft-red: #c22a13;  
      --hover:#266b6a;
      --logo-font:"Cormorant Garamond", serif;
      --body-font: "Work Sans", sans-serif; 
      --heading-font: 'Playfair Display', serif;

}
h1,h2,h3,h4,h5,h6{
   font-family: var(--heading-font);
   letter-spacing:1px;
     
}
p,span,button,a,textarea{
   font-family: var(--body-font);
}
/* dashboard section starts here */
.dashboard{
    min-height: 100vh;
    height: auto;
  padding-top: 7rem;
display: flex;
flex-direction: column;
align-items: center;
width: 100%;


}
.dashboard .heading h1{ 
    text-align: center;
    font-size: 3rem;
 font-weight: 400;
 padding: 2rem 0rem;
}
.dashboard  .container{
   padding-bottom: 3rem;
    display: flex;
     gap: 10px;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width:90%
   

}
.dashboard  .container .box{
    margin-top: 2rem;
    border-radius: 15px;
    width: 380px;

    height: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--body-foreground);

}
.dashboard  .container .box .content{
 width: 80%;
 height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.dashboard  .container .box .content h1{
    font-size: 3rem;
    font-family: var(--body-font);
     font-weight: 400;
  
}
.dashboard  .container .box .content P{
font-size: 1.1rem;
color: var(--text-light);
}
.dashboard .recent-activity{
 box-shadow: var(--shadow);
   width: 90%;
   display: flex;
      flex-direction: column;
gap: 20px;
margin: 2rem 0rem;
padding-bottom: 3rem;
border-radius: 10px;

  
}
.dashboard .recent-activity .heading{
 display: flex;
 flex-direction: column;
align-items: center;
 flex-wrap: wrap;



}
.dashboard .recent-activity .heading h2{
   padding: 2rem ;
   font-size: 2rem;
        font-weight: 500;
     
}
.dashboard .recent-activity .heading p a{
 text-decoration: none;
 color: var(--text-dark);
}
.dashboard .recent-activity .heading p a:hover{
   color: var(--hover);
   transition-duration: 0.5s;
}
.dashboard .recent-activity .wrapper{

   display: flex;
   flex-direction: column;
gap: 20px;
width: 100%;
align-items: center;

}
.dashboard .recent-activity .wrapper .history{
   border: 2px solid rgba(0,0,0,0.1);
   width: 80%;
   display: flex;
   flex-direction: column;
   height: 120px;
  min-height: fit-content;
   justify-content: space-evenly;
   border-radius: 10px;


}
.dashboard .recent-activity .wrapper .history:hover{
      border: 2px solid var(--body-foreground);
      transition-duration: 0.5s;
  transform: translateY(-0.2em); 
}
.dashboard .recent-activity .wrapper .history .about{
   width: 90%;
   display: flex;
   justify-content: space-between;
   align-self: center;
   align-items: center;
 
}
.dashboard .recent-activity .wrapper .history .review{

   width: 90%;
   display: flex;
     align-self: center;
}
.dashboard .recent-activity .wrapper .history .about h3{
   font-size: 1.3rem;
       font-weight: 600;
}
.dashboard .recent-activity .wrapper .history .about  p{
   color: var(--text-light);
}
.dashboard .button-vault{
   width: 100%;
 padding: 2rem 0rem 3rem 0rem ;
 display: flex;
 justify-content: center;

   
}
/* From Uiverse.io by Gaurav-WebDev */ 
.button {
  height: 50px;
  width:250px;
  max-width:100%;
border: none;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in-out;

}

.button:hover {
  box-shadow: var(--shadow);
  border: 1px solid var(--dark-border);
}

.type1::after {
  content: "Click";
  height: 50px;
  width:250px;
  max-width:100%;
  background-color: #fff;
  color: #008080;
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translateY(50px);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;

}

.type1::before {
  content: "Create New Vault Item";
  height: 50px;
  width:250px;
  max-width:100%;
    color: #fff;
    background-color: #008080;

  
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translateY(0px) scale(1.2);

  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}

.type1:hover::after {
  transform: translateY(0) scale(1.2);
}

.type1:hover::before {
  transform: translateY(-50px) scale(0) rotate(120deg);
}

/* dashboard section ends here */


@media (max-width:800px) {
    .dashboard  .container .box{
       width: 90%;
    }
    .dashboard  .container .box .content{

    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.dashboard .recent-activity .wrapper .history .about{

   flex-direction: column;
   gap: 10px;

 
}
.dashboard .recent-activity .wrapper .history{
   padding: 1rem 0.5rem;
gap: 10px;
justify-content: space-evenly;
}

}
@media (max-width:400px) {
   .dashboard  .container .box .content.user-status{

    flex-direction: column;
    justify-content:center;
}
.dashboard .recent-activity .heading h2{
  padding: 2rem;
   font-size: 1.5rem;
        font-weight: 500;
     
}
}