.province {
    cursor: pointer;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 0.5;
    transition: fill 0.3s;
  }

  .province:hover {
    fill: #8F846B !important;
  }

  .active-province {
    fill: #8F846B !important; /* orange-500 */
  }

  .bg-img-right-bottom{
    background-repeat: no-repeat;
    background-position: right bottom;
  }

  .cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border: 1px solid #000;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: background-color 0.3s ease;
    z-index: 9999;
    opacity: 0;
  }
  
  [x-cloak] {
    display: none !important;
  }
  
    .type.typing::after {
        content: '|';
        animation: blink 1s infinite;
        margin-left: 2px;
        color: white;
    }

    @keyframes blink {
        0%, 50%, 100% { opacity: 1; }
        25%, 75% { opacity: 0; }
    }
