*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #eaeaec;
}
.navbar{
    display: flex;
   
}
.navbar .sidebar{
    width: 200px;
    height: 600px;
   background-color: #a094db;
   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(148, 70, 70, 0.05);
}
.navbar .sidebar ul li a{
    color: #d8d4e9; 
    
}
.navbar .sidebar ul li a i{
    width: 25px;
   
}

.navbar .sidebar ul li:hover{
    background-color: #eeecf3;
    
}
.navbar .sidebar ul li:hover a{
    color:#fff;
}

.navbar .main_content{
    width: 100px;
    margin-left: 200px;
}
.header{
    text-align: center;
     background-color: darkred;
    color: white;
    width: 1250px;
    height: 50px;
}
.navbar .logo{
    color: black;
    text-align: right;
    background-color: darkred;
   
}
.navbar .logo i{
    width: 35px;
}
.flex-container{
    display: flex;
    justify-content: center;
   
}
.flex-container >div{
    background-color: rgb(96, 212, 212);
    margin: 60px;
    flex-direction: column;
    width: 170px;
    height: 200px;
    font-size: 30px;
    text-align: center;
    justify-content: space-between;
    border-radius: 40px;
}
#gradient1{
    background-image: linear-gradient(to right, lightgrey,blue ) ;
}
#gradient2{
    background-image:linear-gradient(to left, lightgrey,lightpink) ;
}
#gradient3{
    background-image: linear-gradient(purple,  rgb(43, 43, 99));
}
#gradient4{
    background-image:linear-gradient(white, midnightblue) ;
}  
/* Recent Circulation Container */
.recent-circulation{
    background-color: #fff;
   border-radius: 3px;
    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;
}
record{
    box-shadow: 0px 5px 5px -5px rgb(0 0 0/10%);
    background: #fff;
    border-radius: 3px;
    }
.record-header{
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}
.add, .browse{
    display: flex;
    align-items: center;
}

.add select{
    height: 30px;
    border: 1px solid #b0b0b0;
    border-radius: 3px;
    display: inline-block;
    width: 40px;
}
/* Table style */
.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;

}