*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body{
    background-color: #f3f5f9;
  }
  .navbar{
    display: flex;
   
  }
  .navbar .sidebar{
    width: 235px;
    height: 680px;
   background-color: #7160c4;
   padding: 30px 0;
  }
  .navbar .sidebar h2{
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
  }
  .navbar .sidebar ul li{
    padding: 15px;
    border-bottom: 1px solid rgba(0,0,0,0,05);
    border-top: 1px solid rgba(225,225,225,0.05);
  }
  .navbar .sidebar ul li a{
    color: #bdb8d7; 
    
  }
  .navbar .sidebar ul li a i{
    width: 25px;
   
  }
  
  .navbar .sidebar ul li:hover{
    background-color: #7565c3;
  }
  .navbar .sidebar ul li:hover a{
    color:#fff;
  }
  
  .navbar .main_content{
    width: 100px;
    margin-left: 200px;
  }
  .header{
    text-align: center;
     background-color: rgb(245, 8, 55);
    color: white;
    width: 1300px;
    height: 50px;
  }
  .navbar .logo{
    color: black;
    text-align: right;
    background-color: rgb(245, 8, 55);
   
  }
  .navbar .logo i{
    width: 35px;
  }
  .flex-container{
    display: flex;
    justify-content: center;
    
  }
  
  .flex-container >div {
    background-color: #a4efa9;
    width: 200px;
    margin: 60px; 
    height: 200px;
    text-align: center;
    line-height:50px;
    font-size:30px; 
   justify-content: space-between;
   border-radius: 40px;
   }  
   
   #gradient1{
    background-image: linear-gradient(to right, lightgrey,purple);
   } 
  
   #gradient2{
    background-image: linear-gradient(to right, lightgrey,rgb(61, 58, 205));
   }
  
  #gradient3{
    background-image: linear-gradient(to right, lightgrey,rgb(17, 144, 72));
  }
  #gradient4{
    background-image: linear-gradient(to right, lightgrey,rgb(229, 84, 176));
  }  
  
  /* Recent Circulation Container */
  .recent-circulation{
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgb(0,0,0,0,1);
    margin-left: 60px;
    margin-right: 60px;
  }
  .header1{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  
  }
  
  .add-issue {
    display: flex;
    align-items: center;
    margin-left: auto;  
  }
  
  .add-issue button{
    background-color: #b0b0b0;
    height:30px;
  } 
  
  .record{
    box-shadow: 0px 5px 5px -5px rgb(0 0 0 /10%);
    background: #fff;
    border-radius: 3px;
    margin-left: 60px;
    margin-right: 60px;
  }
  .record-header{
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .add, .browse{
    display: flex;
    align-items: center;
  }
  
  .add select{
    height: 30px;
    border: 1px solid #b0b0b0;
    border-radius: 3px;
    display: inline-block;
    width: 40px;
  }
  /* Table Styles */
  .circulation-table{
    width: 100%;
    border-collapse: collapse;
    
  }
  .circulation-table thead{
    background-color: #f0f0f0;
  }
  .circulation-table th{
    padding: 10px;
    text-align: left;
    border: 1px solid #ccc2c2;
    
  }
  .circulation-table td{
    padding: 10px;
  }
  .circulation-table th{
    font-weight: bold;
  }
  .circulation-table tbody .no-data{
    text-align: center;
    font-style: italic;
    color: #888;
    background-color: #fafafa;
  } 
  .footer{
    text-align: center;
  }
  
