.pin {
    /* width: 320px;
    height: 320px; */
    object-fit: cover;
    cursor: pointer;
    border-radius: 50%;
    transition: transform 0.2s;
  }
  
  .pin:hover {
    transform: scale(1.05);
  }
  
  .pin.active {
    opacity: 0.6;
    cursor: default;
  }
  
  /* Remove hover effect when active */
  .pin.active:hover {
    transform: none;
  }
  
  .pinned-image {
    position: fixed;
    cursor: move;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .pinned-image-content {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .pinned-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  
  .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background-color: #475c72;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.2s ease;
  }


  .close-button:hover {
            background: #aca07d;
  }

  
  .resize-handle {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: rgba(0, 120, 215, 0.7);
    bottom: 10px;
    right: 10px;
    cursor: nwse-resize;
    z-index: 1;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  
  .pinned-image:hover .close-button,
  .pinned-image:hover .resize-handle {
    opacity: 1;
  }
  
  /* Burger Menu Styles */
  .burger-menu-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 2000;
    display: none; /* Initially hidden */
  }
  
  .burger-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #0078d7;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px;
    box-sizing: border-box;
  }
  
  .burger-line {
    width: 24px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    border-radius: 3px;
    transition: transform 0.3s, opacity 0.3s;
  }
  
  .burger-button.active .burger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .burger-button.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  
  .burger-button.active .burger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .burger-menu {
    position: absolute;
    /* top: 60px;
    right: 0; */
    bottom: 12px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border-radius: 8px;
    width: 180px;
    display: none;
  }
  
  .burger-menu.open {
    display: block;
  }
  
  .menu-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
  }
  
  .menu-item:hover {
    background-color: #f0f0f0;
  }
  
  .menu-item:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  
  .menu-item:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  
  .menu-item.active {
    background-color: #f0f8ff;
  }
  
  .menu-item.active::after {
    content: "✓";
    margin-left: auto;
    color: #0078d7;
    font-weight: bold;
  }
  
  .submenu-item {
    padding: 10px 16px 10px 30px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    background-color: #f8f8f8;
    border-top: 1px solid #eee;
  }
  
  .submenu-item:hover {
    background-color: #f0f0f0;
  }
  
  .submenu-item.active {
    background-color: #f0f8ff;
  }
  
  .submenu-item.active::after {
    content: "✓";
    margin-left: auto;
    color: #0078d7;
    font-weight: bold;
  }
  
  /* Focus Mode Overlays */
  .focus-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: none;
  }
  
  .focus-overlay.dark {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .focus-overlay.light {
    background-color: rgba(255, 255, 255, 0.9);
  }    
      
  .hidden-images {
    display: none;
  } 
