
    .slide-panel {
      position: fixed;
      top: 0;
      right: -400px;
      width: 400px;
      height: 100%;
      background-color: #ffffff;
      box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
      transition: right 0.4s ease;
      z-index: 9999;
      overflow-y: auto;
      padding: 20px;
    }

    .slide-panel.active {
      right: 0;
    }

    .panel-header h2 {
      font-size: 1.5rem;
      margin-bottom: 10px;
    }

    .panel-content h3 {
      margin-top: 20px;
      font-size: 1.2rem;
    }

    .modal-footer {
      margin-top: 30px;
      text-align: right;
      font-weight: bold;
      cursor: pointer;
    }

    .close-btn {
      font-size: 1.5rem;
      margin-left: 10px;
      color: #dc3545;
    }
