@import url(https://fonts.googleapis.com/earlyaccess/droidarabickufi.css);
.droid-arabic-kufi { font-family: 'Droid Arabic Kufi', serif; }

header {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    width: 100%;
  }
  
  .logo img {
    height: 50px;
  }
  
  nav {
    display: flex;
    align-items: center;
  }
  
  .sandwich {
    cursor: pointer;
    display: block;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    z-index: 2;
    position: relative;
    margin-right: 35px;
    /* background-color: #77041e; */
    background: linear-gradient(to right, purple, crimson);

    padding: 7px;
  }
  
  .bar {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    margin-bottom: 4px;
    transition: transform 0.3s ease;
    display: block;
  }
  
  
  .menu {
    overflow-y: scroll;
    max-height: 80vh;
    position: absolute;
    top: 100%;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    width: 280px;
    margin: 0;
    padding: 30px;
    background: #f8f9fa;
    border-left: 5px solid #77041E;
    border-image: linear-gradient(to bottom, purple, crimson) 40 100%;
    border-radius: 0 0 0 5px;
    box-shadow: 5px 10px 20px 0 rgba(0, 0, 0, 0.15);
    z-index: 1;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0, 1, 0.5, 1);
  }
  
  .menu.show {
    transform: translateX(0%);
  }
  
  .menu li {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 5px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .menu::-webkit-scrollbar {
    width: 8px;
  }
  
  .menu::-webkit-scrollbar-track {
    background-color: #f8f9fa;
  }
  
  .menu::-webkit-scrollbar-thumb {
    background-color: #77041E;
    border-radius: 4px;
  }
  
  .menu::-webkit-scrollbar-thumb:hover {
    background-color: #77041E;
  }
  
  .menu.show li {
    opacity: 1;
    transform: translateX(0);
  }
  
  .menu a {
    color: #333;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px;
    border-radius: 5px;
    background-image: linear-gradient(45deg, #56094c, #77041e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .menu a:hover {
    color: #fff;
    background-image: linear-gradient(45deg, purple, crimson);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: aliceblue;

  }
  
  /* Media query for mobile devices */
  
  @media (max-width: 768px) {
    .menu {
      width: 200px;
      right: -100%;
    }
  
    .menu.show {
      transform: translateX(0%);
      right: 0;
    }
  }
  
  
  
  .content {
    /* margin-top: 80px; */
    height: 100vh;
  }
  
  .header-line {
    width: 100%;
    height: 2px;
    background-color: #77041E;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  
  .menu-item-details {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .avatar_header {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .details {
    display: flex;
    flex-direction: column;
  }
  
  .name {
    font-weight: bold;
  }
  
  .uses,
  .renew-date {
    font-size: 0.8em;
    color: #777;
  }
  