    body {
      padding: 20px;
    }
	.btn {
	  background-color: #721e63 !important;
	  border-color: #721e63 !important;
	  color: white !important;
	}
    .menu-button {
      position: absolute;
      top: 5px;
      right: 20px;
    }
    .drop-down {
      position: relative;
      display: inline-block;
    }
    .drop-down__button {
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
    }
    .drop-down__button img {
      height: 60px;
    }
    .drop-down__menu-box {
      position: absolute;
      right: 8px;
      top: 70px;
      background: #fff;
      border-radius: 4px;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
      visibility: hidden;
      opacity: 0;
      transition: all 0.3s ease;
      min-width: 200px;
      z-index: 1000;
    }
    .drop-down--active .drop-down__menu-box {
      visibility: visible;
      opacity: 1;
    }
    .drop-down__menu {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .drop-down__item {
      padding: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      font-size: 14px;
      color: #721e63;
      text-decoration: none;
      border-bottom: 1px solid #eee;
      transition: background 0.2s, color 0.2s;
    }
    .drop-down__item img {
      width: 20px;
      height: 20px;
      object-fit: contain;
    }
    .drop-down__item a {
      display: flex;
      align-items: center;
      gap: 10px;
      color: inherit;
      text-decoration: none;
      width: 100%;
      height: 100%;
    }
    .drop-down__item:hover {
      color: inherit;
      background: #ecedf1;
      font-weight: bold;
      text-decoration: none;
    }
    .drop-down__item:last-child {
      border-bottom: none;
    }
