
    @import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@400;500;600;700&display=swap');

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


  

    html {
      overflow-x: hidden;
    }


    body {
      background: linear-gradient(to left, #b7e7c975, #badbe2ff);
      overflow-x: hidden;
    }

    .user-icon {
      width: 40px;
      height: 40px;
      background-color: #ecececff;
      color: white;
      font-weight: bold;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-transform: uppercase;
      cursor: pointer;
    }

    .dropdown-user {
      position: relative;
      display: inline-block;
    }

    .dropdown-user-content {
      display: none;
      position: absolute;
      right: 0;
      background-color: #ebebebff;
      min-width: 120px;
      box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
      z-index: 1;
      border-radius: 5px;
    }

    .dropdown-user-content a {
      color: black;
      padding: 10px 12px;
      text-decoration: none;
      display: block;
    }

    .dropdown-user-content a:hover {
      background-color: #ddd;
    }

    .dropdown-user.show .dropdown-user-content {
      display: block;
    }

    .card:hover {
      transform: translateY(-3px);
      transition: all 0.2s ease-in-out;
    }

    
    /* إخفاء الاسكرول */
    .hide-scrollbar::-webkit-scrollbar {
      display: none;
    }

    .hide-scrollbar {
      scrollbar-width: none;
    }

    /* نخلي dropdown يبان فوق كل شيء */
    .dropdown-menu {
      z-index: 99999 !important;
    }

