@charset "utf-8";
/* CSS Document */

    body {
      font-family: bein !important;
    }

    .offcanvas-end {
      width: 300px;
      background-color: #fff;
      border-left: 1px solid #ddd;
    }

    .offcanvas-header {
      display: flex;
      justify-content: space-between;
      flex-direction: row;
      border-bottom: 1px solid #eee;
    }

    .offcanvas-title {
      font-size: 20px;
      font-weight: bold;
      color: #333;
      text-align: right;
      flex: 1;
    }

    .btn-close {
      background-color: #eee;
      border-radius: 50%;
      padding: 5px;
      margin-left: auto;
    }

    .list-group-item {
      border: none;
      border-bottom: 1px solid #f0f0f0;
      font-size: 16px;
      color: #333;
      transition: background-color 0.3s ease;
      text-align: right;
    }

    .list-group-item i {
      margin-left: 10px;
      color: #007bff;
      min-width: 20px;
      text-align: center;
    }

    .list-group-item:hover {
      background-color: #f8f9fa;
    }

    .submenu-item {
      padding-right: 25px;
      font-size: 15px;
      color: #555;
    }

    .submenu-item i {
      color: #6c757d;
    }

    .accordion-toggle {
      font-size: 16px;
      padding: 10px;
      background-color: #fff;
      color: #333;
      border: none;
      box-shadow: none;
      text-align: right;
      width: 100%;
      cursor: pointer;
    }

    .arrow-icon {
      transition: transform 0.3s ease;
    }

    .arrow-icon.rotate {
      transform: rotate(180deg);
    }

    .accordion-body {
      background-color: #f9f9f9;
      padding-top: 0.25rem;
      padding-bottom: 0.25rem;
    }
