body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* background-color: rgb(247, 246, 252); */
    background-color: #ebf3ff;
    color: rgb(70, 71, 81);
    font-family: 'Open Sans', sans-serif;
  }
  
  .material-icons-outlined {
    vertical-align: middle;
    line-height: 1px;
    font-size: 30px;
  }
  
  .text-secondary {
    color: rgb(70, 71, 81);
  }
  
  .text-blue {
    color: rgb(29, 38, 154);
  }
  
  .background-blue {
    background-color: rgb(29, 38, 154);
  }
  
  .text-red {
    color: rgb(213, 0, 0);
  }
  
  .background-red {
    background-color: rgb(213, 0, 0);
  }
  
  .text-green {
    color: rgb(46, 125, 50);
  }
  
  .background-green {
    background-color: rgb(46, 125, 50);
  }
  
  .text-orange {
    color: rgb(255, 111, 0);
  }
  
  .background-orange {
    background-color: rgb(255, 111, 0);
  }


  .grid-container {
    display: grid;
    grid-template-columns: 260px 1fr 1fr 1fr;
    grid-template-rows: 0.2fr 3fr;
    grid-template-areas:
      'sidebar header header header'
      'sidebar main main main';
    height: 100vh;
    background:#ebf3ff;
	  width:100vw;
	  
	  
  }
  
  /* ---------- HEADER ---------- */
  
  .header {
    display: flex;
    align-items: end;
    justify-content: end;
    cursor: pointer;
    margin-right: 1rem;
    
  }
  
  .menu-icon {
    display: none;
  }

header.header span.material-icons-outlined {
	font-size:2rem;
	margin-right:1rem;
	
}

  
  /* ---------- SIDEBAR ---------- */
  
  #sidebar {
    grid-area: sidebar;
    height: 100%;
    background: #1C3661;
    color: rgb(255, 255, 255);
    overflow-y: auto;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
	  
  }
  
  .sidebar-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 20px 20px;
    margin-bottom: 30px;
  }
  
  .sidebar-title > span {
    display: none;
  }
  
  .sidebar-brand {
    margin-top: 15px;
    font-size: 30px;
    font-weight: 700;
  }
  
  .sidebar-brand > .material-icons-outlined {
    font-size: 50px;
    
  }
  .sidebar-title > .material-icons-outlined {
    cursor: pointer;
  }
  
  .sidebar-list {
    padding: 0;
    margin-top: 15px;
    list-style-type: none;
  }
  
  .sidebar-list-item {
    padding: 20px 20px 20px 20px;
    font-size: 18px;
  }
  
  .sidebar-list-item:hover {
    background-color: #ebf3ff;
    cursor: pointer;
	  transition: 0.3s ease ;
  }
.sidebar-list-item:hover a{
	  color:#1C3661;
	
}
  
  .sidebar-list-item > a {
    text-decoration: none;
    color: white;
  }
  
  .sidebar-responsive {
    display: inline !important;
    position: absolute;
	 z-index:99;
	  background:red;
  }
form  button{
	margin-top:40px;
	margin-left: 10px;
}
form button:hover{
	background:green;
}
  
  /* ---------- MAIN ---------- */

  .main-container {
    grid-area: main;
    padding: 0px 17px;
	  width:100%;
	  overflow-y:auto;

	
  }


  .main-title {
    display: flex;
    justify-content: space-between;
  }
.main-title h2{
	color:#1C3661;
}
  .main-cards {
	font-size: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
	 
  }
  
  .card {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 25px;
    color: white;
    border-radius: 30px;
    box-shadow: 0 6px 7px -4px rgba(0, 0, 0, 0.2);
	  z-index: 0;
	  
  }
.card h2{
	color:white;
}
.card h1{
	color:white;
}
.btn-archive{
	background: #ebebee;
    font-size: 22.12px;
    color: #1f1f1f;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 3rem;
    transition: 500ms all ease-in;
}
.archive {
    background: #ebebee;
    font-size: 22.12px;
    color: #1f1f1f;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 3rem;
    transition: 500ms all ease-in;
}
.btn-archive:hover{
	background:#3A97D3;
}
.archive:hover{
	background:#3A97D3;
}
/* style action button*/
.action-button{
font-size: 0px !important;
}
.delete {
    background: #ebebee;
    font-size: 18px;
    color: #1f1f1f;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 3rem;
    transition: 500ms all ease-in;
    margin-top: 10px; /* Add margin to create space between buttons */
}

 .card1 {
    background-color: #ffa37a;
    color: white;
}
.card2 {
    background-color: #62b4f7;
    color: white;
}
.card3 {
    background-color: #54b0a3;
    color: white;
}
.card4 {
    background-color: #0484a6;
    color: white;
}
.card5 {
    background-color: #cc6bff;
    color: white;
}
.card6 {
    background-color: #00473de0;
    color: white;
}
.card7 {
    background-color: #fa7d82;
    color: white;
}
.card8 {
    background-color: #795050cc;
    color: white;
}
  
  .card-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
/* .card-inner h2{
		 color:rgb(228, 102, 6);
	  } */
  .card-inner > span i{
    font-size: 50px;
/* 	  color: rgb(228, 102, 6); */
  }
.card-inner > span {
    font-size: 50px;
  }
  
  .products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .product-card {
    height: 350px;
    background-color: rgb(255, 255, 255);
    padding: 25px;
    border-radius: 30px;
    box-shadow: 0 6px 7px -4px rgba(0, 0, 0, 0.2);
  }
  
  .product-description {
    padding-top: 50px;
  }
  
  .product-button {
    background-color: rgb(29, 38, 154);
    color: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 30px;
  }
  
  .product-button > .material-icons-outlined {
    font-size: 50px;
  }
  
  .social-media {
    height: 350px;
    padding: 10px;
  }
  
  .product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .product-icon {
    color: rgb(255, 255, 255);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
  }
  
  .product-icon > .bi {
    font-size: 25px;
  }
/*Attendance List serction  */
.attendance{
  margin-top: 20px;
  text-transform: capitalize;
}
.attendance-list h1{
 color:#1C3661;
}
.attendance-list{
  max-width: 100%;
  padding: 10px;
  margin-top: 10px;
  background: #fff;
  border-radius: 10px;
  overflow: auto;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}
.table{
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 15px;
  max-width:100%;
  border-radius: 5px 5px 0 0;
	background:yellow;
}
table thead tr{
  color: #fff;
  background: #1C3661;
  text-align: left;
  font-weight: bold;
}
.table th,
.table td{
/*   padding: 12px 15px; */
	text-align:center;
	
}
.table tbody tr{
  border-bottom: 1px solid #ddd;
}
.table tbody tr:nth-of-type(odd){
  background: #f3f3f3;
}
.table tbody tr.active{
  font-weight: bold;
  color: #4AD489;
}
.table tbody tr:last-of-type{
  border-bottom: 2px solid #4AD489;
}
.table button{
  padding: 6px 20px;
  border-radius: 10px;
  cursor: pointer;
  background: transparent;
  border: 1px solid #4AD489;
}
.table button.status{
  border: 1px solid orange;
  color:orange;
}
.table button.status:hover{
  background: orange;
  color:white;
  transition: 0.5rem;
	
}
.table button:hover{
  background: #4AD489;
  color: white;
  transition: 0.5rem;
}
/*  ----this is the popup style-----  */

.pop_up{
	position:fixed;
	width:100%;
	height:100vh;
	background:rgba(0,0,0,0.5);
	left:0;
	right:0;
	top:0;
	bottom:0;
	display:none;
	align-items:center;
	justify-content:center;
	color:white;
	z-index:30;
}
.pop_card{
/* 	background:#198ae3; */
	background: linear-gradient(to right, #1C3661, #5A7FF5);
	width:50%;
	margin:auto;
	border-radius:1rem;
	padding: 1rem  2rem 3rem 2rem;
	margin-top:3rem;
	display:flex;
	align-items:start;
	gap:20px;
	color:white;
/* 	min-height:50vh; */
	flex-direction:column;
	position:relative;
	
}

.pop_card-header{
	display:flex;
	align-items:center;
	justify-content:space-between;
	width:100%;
	border-bottom: 1px solid #1C3661;
	padding-bottom:7px;
	
}
.pop_card h1{
	color:white;
	margin:0;
	
}
button.btn-close{
	color:white;
}
button.close{
	background:transparent;
}
button.close i{
	color:white;
	font-size:1.5rem;
}
button.close i:hover{
	color:#1C3661;
	font-size:1.5rem;
}
.pop_card-content h1{
	margin:0;
}
button.ok-btn{
	position:absolute;
	right:10px;
	bottom:10px;
	padding:7px 20px;
/* 	border: 1px solid orange; */
	border-radius:10px;
	font-weight:bold;
	color:white;
	background:#1C3661;
}
button.ok-btn:hover{
	transition:0.5rem;
	background:white;
	color:#1C3661;
}
  /* ---------- MEDIA QUERIES ---------- */
@media screen and (max-width: 1150px) {
	.card-inner h2{
		  font-size:18px;
	  }
	.card-inner > span i{
    font-size: 30px;
  }
	.card-inner{
		flex-direction:column;
		align-items:start;
	}
	.main-cards {
      grid-template-columns: 1fr 1fr 1fr ;
		  
	  }
	.table th,
.table td{
/*   padding: 12px 15px; */
	font-size:14px;
}
}
  /* Medium <= 992px */
  @media screen and (max-width: 992px) {
    .grid-container {
      grid-template-columns: 1fr;
      grid-template-rows: 0.2fr 3fr;
      grid-template-areas:
        'header'
        'main';
    }
	  .pop_card{
		  width:70%;
	  }
  
    #sidebar {
      display: none;
    }
  
    .menu-icon {
      display: inline;
    }
  
    .sidebar-title > span {
      display: inline;
    }
	  .main-cards {
      grid-template-columns: 1fr 1fr  ;
		  
	  }
	  .card-inner h2{
		  font-size:16px;
	  }
	  .card-inner{
		flex-direction:row;
		align-items:center;
	}
	  .card-inner h2{
		  font-size:20px;
	  }
	  .card-inner > span i{
    font-size: 40px;
  }
.table th,
.table td{
/*   padding: 12px 15px; */
	font-size:12px;
}

  }

  
  /* Small <= 768px */
  @media screen and (max-width: 768px) {
    .main-cards {
      grid-template-columns: 1fr  ;
      gap: 10px;
      margin-bottom: 0;
    }
	  .pop_card{
		  width:80%;
	  }
    .products {
      grid-template-columns: 1fr;
      margin-top: 30px;
    }
	  .table th,
.table td{
/*   padding: 12px 15px; */
	font-size:10px;
}
  }
  
  /* Extra Small <= 576px */
  @media screen and (max-width: 576px) {
    .header-left {
      display: none;
    }
	  .pop_card{
		  width:90%;
	  }
	  .main-cards{
      grid-template-columns: 1fr;
		  
	  }
	  .table th,
.table td{
/*   padding: 12px 15px; */
	font-size:8px;
}
  }


.swal2-container{
	z-index:99;
}
  
  