 /* Reset */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 /* Layout */
 body {
     font-family: tajawal;
     display: flex;
     flex-direction: column;
     min-height: 100vh;
 }

 .header {
     background-color: #fff;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1em;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1000;
 }

 .menu-toggle {
     display: none;
     font-size: 1.5em;
     cursor: pointer;
     background-color: transparent;
     border: none;
 }

 .menu>a {
     padding: 7px
 }

 .logo {
     font-size: 1.5em;
     font-weight: bold;
 }

 .user-profile {
     font-size: 1em;
     color: #666;
 }

 .sidebar {
     background-color: #f9f9f9;
     padding: 1em;
     width: 100%;
     display: none;
     flex-direction: column;
     gap: 1em;
     transition: transform 0.3s;
     position: fixed;
     top: 60px;
     /* Position below the header */
     left: 0;
     height: calc(100% - 120px);
     /* Fill space between header and footer */
     transform: translateX(-100%);
     z-index: 900;
 }

 .sidebar.open {
     transform: translateX(0);
 }

 .sidebar .menu a {
     color: #333;
     text-decoration: none;
     padding: 0.5em;
     display: block;
 }

 .content {
     flex: 1;
     padding: 2em;
     background-color: #f1f5f8;
     margin-top: 60px;
     /* Offset content below fixed header */
 }

 .overview h1 {
     font-size: 1.5em;
     margin-bottom: 1em;
 }

 .cards {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
     gap: 1em;
 }

 .card {
     background-color: #fff;
     padding: 1em;
     border-radius: 8px;
     text-align: center;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 }

 .card .icon {
     font-size: 2em;
     display: block;
     margin-bottom: 0.5em;
 }

 /* Footer */
 footer {
     text-align: center;
     padding: 1em;
     background-color: #fff;
     border-top: 1px solid #ddd;
     position: fixed;
     bottom: 0;
     left: 0;
     right: 0;
     z-index: 1000;
     box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
 }

 /* Responsive */
 @media (max-width: 768px) {
     .menu-toggle {
         display: block;
     }

     .sidebar {
         position: fixed;
         width: 100%;
         height: calc(100% - 120px);
         /* Remaining space between header and footer */
         z-index: 1000;
         display: flex;
         transform: translateX(-100%);
         background-color: rgba(255, 255, 255, 0.95);
     }

     .sidebar.open {
         transform: translateX(0);
     }

     .header .menu {
         display: none;
     }
 }

 a {
     color: black;
     background-color: transparent;
     text-decoration: none;
 }

 a:hover {
     color: #ff9900;
 }

 .new {
    display: flex;
    flex-direction: row;
    padding: 5px;
 }