      .kt-switch {
          position: relative;
          display: inline-block;
          width: 36px;
          height: 20px;

      }

      .kt-switch input {
          opacity: 0;
          width: 0;
          height: 0;
      }

      .kt-switch span {
          position: absolute;
          cursor: pointer;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background-color: #ccc;
          border-radius: 34px;
          transition: 0.3s;
      }

      .kt-switch span:before {
          position: absolute;
          content: "";
          height: 14px;
          width: 14px;
          left: 3px;
          bottom: 3px;
          background-color: white;
          border-radius: 50%;
          transition: 0.3s;
      }

      .kt-switch input:checked+span:before {
          transform: translateX(16px);

      }

      .kt-switch input:checked+span {
          background-color: #3b82f6;
      }

      .kt-form-label {
          display: block;
          margin-bottom: 0.5rem;
          font-weight: 500;
      }

      .text-foreground {
          color: #1f2937;
      }


      .breadcrumb {
          padding: 12px 20px;
          background: #F5F6FA;
          border-radius: 6px;
          border-top: 1px solid #E4E6EF;
          border-bottom: 1px solid #E4E6EF;
      }


      .btn-success {
          background-color: #22c55e;
          color: white;

          padding: 10px 18px;

          border: none;
          border-radius: 8px;

          font-size: 14px;
          font-weight: 500;

          cursor: pointer;

          transition: all 0.2s ease;
      }

      .btn-success:hover {
          background-color: #16a34a;
      }

      .btn-success:active {
          transform: scale(0.98);
      }


      .hover-card {
          transition: all 0.3s ease;
          cursor: pointer;
      }

      .hover-card:hover {
          transform: translateY(-8px);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      }