/* ASV Masonry Gallery - Consolidated Single CSS File v1.4.6 FINAL */

/* Root Layout Variables */
:root {
  --background-color: #f2f3f5;
  --sidebar-width-open: 280px;
  --hero-purple: #40009f;
  --sidebar-black: #000000;
  --text-white: #ffffff;
  --thumbs-green: #46b450;
  --filter-text-gray: #bfbfbf;
}

/* Font Family Override - Force Poppins Throughout */
.asv-mg-wrap,
.asv-mg-hero-content,
.asv-mg-hero h1,
.asv-mg-hero-subtitle,
.asv-mg-category-btn,
.asv-mg-btn,
button,
.asv-mg-loadmore button,
.asv-mg-sidebar-content {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

/* Main Container */
.asv-mg-wrap { 
  margin: 0;
  max-width: 100vw;
  min-height: 100vh;
  background-color: var(--background-color);
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Layout Container */
.asv-mg-layout {
  display: flex;
  min-height: 100vh;
  width: 100%;
  position: relative;
}

/* ============================================================
   SIDEBAR WITH PUSH BEHAVIOR & TAB TOGGLE
   ============================================================ */

/* Left Sidebar - Pushes content when open */
.asv-mg-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: var(--sidebar-width-open);
  background-color: var(--sidebar-black);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(-280px);
}

.asv-mg-sidebar.open {
  transform: translateX(0);
}

/* Sidebar Content */
.asv-mg-sidebar-content {
  padding: 20px 16px;
  width: 100%;
  color: var(--text-white);
  min-height: 100vh;
  box-sizing: border-box;
}

/* Filters Heading with Integrated Toggle Button */
.asv-mg-sidebar h3 {
  color: var(--text-white);
  font-size: 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600;
}

.asv-mg-sidebar h3 .filters-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Toggle Button - Integrated in heading */
.asv-mg-sidebar-toggle {
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  border-radius: 4px;
  color: var(--text-white);
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: all 0.2s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.asv-mg-sidebar-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Tab Toggle Button - Left Edge, Aligned with Hero */
.asv-mg-mobile-toggle {
  position: fixed;
  top: 0;
  left: 0;
  width: 45px;
  height: 60px;
  background: var(--sidebar-black);
  border: none;
  border-radius: 0 8px 8px 0;
  color: var(--text-white);
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
}

.asv-mg-mobile-toggle:hover {
  background: #1a1a1a;
  width: 50px;
}

.asv-mg-mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* Hide tab when sidebar is open */
.asv-mg-sidebar.open ~ .asv-mg-mobile-toggle {
  opacity: 0;
  pointer-events: none;
}

/* Sidebar Overlay - Remove, not needed with push behavior */
.asv-mg-sidebar-overlay {
  display: none !important;
}

/* Custom scrollbar for sidebar */
.asv-mg-sidebar::-webkit-scrollbar {
  width: 8px;
}

.asv-mg-sidebar::-webkit-scrollbar-track {
  background: #333;
}

.asv-mg-sidebar::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 4px;
}

.asv-mg-sidebar::-webkit-scrollbar-thumb:hover {
  background: #888;
}

/* Firefox scrollbar */
.asv-mg-sidebar {
  scrollbar-width: thin;
  scrollbar-color: #666 #333;
}

/* ============================================================
   FILTER SECTIONS
   ============================================================ */

.asv-mg-filter-section {
  margin-bottom: 25px;
}

.asv-mg-filter-section h4 {
  color: var(--text-white);
  font-size: 15px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 3px solid #444;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 500;
}

.asv-mg-filter-section h4:after {
  content: '+';
  font-size: 20px;
  font-weight: normal;
}

.asv-mg-filter-section.expanded h4:after {
  content: '−';
}

.asv-mg-filter-options {
  display: none;
}

.asv-mg-filter-section.expanded .asv-mg-filter-options {
  display: block;
}

.asv-mg-filter-option {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.asv-mg-filter-option input[type="checkbox"],
.asv-mg-filter-option input[type="radio"] {
  margin: 0;
}

.asv-mg-filter-option label {
  color: #e8e8e8;  /* or #e0e0e0 for even lighter */
  font-size: 13px;
  cursor: pointer;
  margin: 0;
  font-family: 'Poppins', sans-serif !important;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.asv-mg-filter-option label:hover {
  color: var(--text-white);
}

.asv-mg-filter-option input[type="radio"]:checked + label {
  color: var(--text-white);
}

/* Filter Action Buttons */
.asv-mg-filter-actions {
  margin-top: 25px;
  padding: 20px 5px 30px 0;
  border-top: 1px solid #444;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.asv-mg-filter-submit,
.asv-mg-filter-refresh {
  width: calc(100% - 5px);
  padding: 12px 16px;
  border: none;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.asv-mg-filter-submit {
  background: #40009f;
  color: white;
}

.asv-mg-filter-submit:hover {
  background: #350080;
  transform: translateY(-1px);
}

.asv-mg-filter-refresh {
  background: #666;
  color: white;
}

.asv-mg-filter-refresh:hover {
  background: #555;
  transform: translateY(-1px);
}

.asv-mg-filter-submit:active,
.asv-mg-filter-refresh:active {
  transform: translateY(0);
}

.asv-mg-filter-submit:disabled,
.asv-mg-filter-refresh:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Disabled filter labels */
.asv-mg-filter-option input[type="radio"]:disabled + label.disabled-label {
  opacity: 0.6;
  cursor: not-allowed;
  color: #f0f0f0;
}

.asv-mg-filter-option input[type="radio"]:disabled + label.disabled-label:hover {
  color: #f0f0f0;
}

/* ============================================================
   MAIN CONTENT AREA - PUSHES WHEN SIDEBAR OPENS
   ============================================================ */

.asv-mg-main-content {
  margin-left: 0;
  width: 100%;
  transition: all 0.3s ease;
  min-height: 100vh;
}

/* Push content when sidebar is open */
.asv-mg-sidebar.open ~ .asv-mg-main-content {
  margin-left: var(--sidebar-width-open);
  width: calc(100% - var(--sidebar-width-open));
}

/* Hero Section */
.asv-mg-hero {
  position: relative;
  height: 400px;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  margin-bottom: 30px;
  min-height: 400px !important;
  margin-left: 6%;
  margin-right: 6%;
  border-radius: 0 0 48px 0;
}

.asv-mg-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
}

.asv-mg-hero-content {
  position: relative;
  z-index: 2;
  padding: 30px 30px;
  color: var(--text-white);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
}

.asv-mg-hero h1 {
  font-size: 72px !important;
  font-weight: 500 !important;
  line-height: 1.067 !important;
  margin: 0 0 24px 0 !important;
  text-shadow: none !important;
  letter-spacing: -1.26px !important;
  word-spacing: -2.16px !important;
  font-family: 'Poppins', sans-serif !important;
}

.asv-mg-hero-subtitle {
  font-size: 24px !important;
  font-weight: 500 !important;
  line-height: 1.067 !important;
  margin: 0 !important;
  text-shadow: none !important;
  letter-spacing: -0.28px !important;
  word-spacing: -0.72px !important;
  font-family: 'Poppins', sans-serif !important;
}

.asv-mg-hero-subtitle div {
  margin-bottom: 6px !important;
}

/* Hero video container for Icebergs */
.hero-video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1s ease-in;
}

.hero-video.loaded {
  opacity: 1;
}

/* ============================================================
   CATEGORY BUTTONS
   ============================================================ */

.asv-mg-category-buttons {
  padding: 0 6% !important;
  margin-bottom: 50px !important;
}

.asv-mg-category-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.asv-mg-category-btn {
  background: #d9cfe8 !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 10px 18px !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  font-family: 'Poppins', sans-serif !important;
  color: #666666 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  text-transform: lowercase !important;
}

.asv-mg-category-btn:hover,
.asv-mg-category-btn.active {
  background: #bfacd1 !important;
  color: #333 !important;
  transform: translateY(-1px) !important;
  font-weight: 500 !important;
}

.asv-mg-category-btn[data-category="textures"] {
  display: inline-block !important;
}

.asv-mg-category-btn[data-category="approved"] {
  display: none !important;
}

/* ============================================================
   MASONRY GRID
   ============================================================ */

.asv-mg-grid-container {
  padding: 0 6%;
}

.asv-mg-grid {
  margin-bottom: 40px;
}

.asv-mg-item { 
  position: relative;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease;
  margin-bottom: 4px !important;
  width: calc(33.333% - 8px);
}

.asv-mg-item:hover {
  transform: translateY(-2px);
}

.asv-mg-card { 
  position: relative; 
  perspective: 1000px; 
}

/* ============================================================
   IMAGE BUTTONS - SVG PILL SHAPE
   ============================================================ */

.asv-mg-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.asv-mg-image-container img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.asv-mg-card:hover .asv-mg-image-container img {
  transform: scale(1.02);
}

.asv-mg-action-buttons {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  pointer-events: none;
  background: #fff;
  border: 1px solid #000; /* Reduced from 3px to 2px (50% smaller overall) */
  border-radius: 20px; /* Reduced from 50px */
  padding: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15); /* Reduced shadow */
}

.asv-mg-card:hover .asv-mg-action-buttons {
  opacity: 1;
  pointer-events: auto;
}

/* Individual icon button - transparent sections with padding */
.asv-mg-icon-btn {
  width: auto;
  height: auto;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 3px 5px; /* Reduced 50% from 10px 14px */
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: none;
  position: relative;
}

/* Black divider lines between sections */
.asv-mg-icon-btn:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px; /* Reduced from 3px */
  background: #000;
}

.asv-mg-icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.asv-mg-icon-btn:active {
  transform: scale(0.95);
}

/* SVG icons - 25% larger than before (was 56px, now 70px) */
.asv-mg-icon-btn svg {
  width: 35px; /* Increased 25% from 56px */
  height: 35px;
  display: block;
  fill: #000;
}

/* Thumbs-up button specific */
.asv-mg-thumbs-btn svg {
  fill: #000;
}

.asv-mg-thumbs-btn:hover svg {
  fill: var(--thumbs-green);
}

.asv-mg-thumbs-btn.voted svg {
  fill: var(--thumbs-green);
}

/* Trash button specific */
.asv-mg-trash-btn svg {
  fill: #000;
}

.asv-mg-trash-btn:hover svg {
  fill: #dc2626;
}

/* Plus button specific */
.asv-mg-plus-btn svg {
  fill: #000;
}

.asv-mg-plus-btn:hover svg {
  fill: #40009f;
}

/* Remove dark overlay on hover since buttons are now visible */
.asv-mg-card:hover .asv-mg-image-container::after {
  display: none;
}

.asv-mg-icon-btn:focus {
  outline: 2px solid rgba(64, 0, 159, 0.6);
  outline-offset: 2px;
}

.asv-mg-icon-btn:focus-visible {
  outline: 2px solid rgba(64, 0, 159, 1);
  outline-offset: 3px;
}

.asv-mg-icon-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ============================================================
   LOAD MORE & LIGHTBOX
   ============================================================ */

.asv-mg-loadmore { 
  text-align: center;
  padding: 0 6% 40px;
}

.asv-mg-loadmore button { 
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Poppins', sans-serif !important;
}

.asv-mg-loadmore button:hover {
  background: #f8f8f8;
  border-color: #999;
  transform: translateY(-1px);
}

.asv-mg-loadmore button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.asv-mg-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.asv-mg-modal.active {
  display: flex;
}

.asv-mg-modal-content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.asv-mg-modal img {
  width: 100%;
  height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

/* ============================================================
   ZOOM CLOSE BUTTON - PILL STYLE MATCH
   ============================================================ */
.asv-mg-modal-close {
  background: #fff !important;
  border: 1px solid #000 !important;
  border-radius: 22px 0 0 22px !important; /* Rounded left corners only */
  border-top-right-radius: 0 !important;   /* Sharp right edge */
  border-bottom-right-radius: 0 !important;
  width: 42px !important;
  height: 42px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 28px !important;
  font-weight: 400 !important;
  color: #000 !important;
  position: absolute !important;
  top: 20px !important;
  right: 20px !important;
  cursor: pointer !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
  font-family: 'Poppins', sans-serif !important;
}
.asv-mg-modal-close:hover {
  background: #f8f8f8 !important;
  transform: translateY(-1px) !important;
}


.asv-mg-lightbox-info { 
  background: #fff; 
  color: #000; 
  font-size: 14px; 
  line-height: 1.4; 
  padding: 12px 20px; 
  margin: 10px auto 0;
  max-width: fit-content; 
  text-align: center; 
  border-radius: 6px;
  font-family: 'Poppins', sans-serif !important;
}

.asv-mg-lightbox-info a.asv-mg-download-link { 
  margin-left: 12px; 
  color: #0066cc; 
  font-weight: 600; 
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.asv-mg-lightbox-info a.asv-mg-download-link:hover { 
  text-decoration: underline;
  background: #f0f8ff;
}

/* ============================================================
   HIDE OLD ELEMENTS & SEARCH
   ============================================================ */

.asv-mg-slideshow,
.asv-mg-ticker,
.asv-mg-controls,
.asv-mg-title {
  display: none;
}

.asv-mg-search-container,
.asv-mg-search-bar,
.asv-mg-search-input,
.asv-mg-search-btn,
#asv-search-input,
#asv-search-btn,
.search-container,
.search-bar,
[id*="search"],
[class*="search"],
.asv-mg-wrap [type="search"],
.asv-mg-wrap input[placeholder*="search" i] {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

@media (max-width: 1200px) {
  .asv-mg-item { 
    width: calc(33.333% - 8px);
  }
}

@media (max-width: 900px) {
  .asv-mg-item { 
    width: calc(50% - 8px);
  }
  
  .asv-mg-hero h1 {
    font-size: 72px !important;
  }
  
  .asv-mg-hero-subtitle {
    font-size: 24px !important;
  }
}

@media (max-width: 768px) {
  .asv-mg-sidebar {
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    width: 280px;
    transform: translateX(-280px);
  }
  
  .asv-mg-sidebar.open ~ .asv-mg-main-content {
    margin-left: 0;
    width: 100%;
  }
  
  .asv-mg-action-buttons {
    opacity: 1;
    pointer-events: auto;
    top: 8px;
    right: 8px;
  }
  
  .asv-mg-icon-btn {
    padding: 5px 7px; /* Reduced 50% */
  }
  
  .asv-mg-icon-btn svg {
    width: 70px; /* 25% larger */
    height: 70px;
  }
}

@media (max-width: 600px) {
  .asv-mg-item { 
    width: 100%;
  }
}

@media (max-width: 500px) {
  .asv-mg-hero {
    height: 300px;
  }
  
  .asv-mg-hero h1 {
    font-size: 30px !important;
  }
  
  .asv-mg-hero-subtitle {
    font-size: 16px !important;
  }
  
  .asv-mg-category-row {
    gap: 8px;
  }
  
  .asv-mg-category-btn {
    font-size: 13px !important;
    padding: 8px 14px !important;
  }
  
  .asv-mg-filter-actions {
    padding: 15px 0 25px 0;
    gap: 10px;
  }
  
  .asv-mg-filter-submit,
  .asv-mg-filter-refresh {
    padding: 10px 14px;
    font-size: 13px;
  }
  
  .asv-mg-icon-btn {
    padding: 4px 6px; /* Reduced for mobile */
  }
  
  .asv-mg-icon-btn svg {
    width: 60px; /* 25% larger than previous mobile size */
    height: 60px;
  }
  
  .asv-mg-sidebar {
    width: 100%;
    max-width: 320px;
    transform: translateX(-100%);
  }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes rotation {
  from { 
    transform: rotate(0deg); 
  }
  to { 
    transform: rotate(359deg); 
  }
}

/* ============================================================
   BUTTON MOBILE
   ============================================================ */

@media (max-width: 768px) {
  .asv-mg-action-buttons {
    border-radius: 22px !important; /* matches your + and × buttons */
  }
}


/* ============================================================
   PERMISSION-BASED BUTTON VISIBILITY (SECURITY)
   ============================================================ */

/* Hide moderation buttons for guests via body class */
body:not(.logged-in) .asv-mg-thumbs-btn,
body:not(.logged-in) .asv-mg-trash-btn,
body:not(.logged-in) .approve-btn,
body:not(.logged-in) .delete-btn {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Hide via item-level class (more reliable) */
.user-guest .asv-mg-thumbs-btn,
.user-guest .asv-mg-trash-btn,
.user-guest .approve-btn,
.user-guest .delete-btn {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Ensure only plus button shows for guests */
.user-guest .asv-mg-action-buttons {
  pointer-events: auto;
}

.user-guest .asv-mg-plus-btn {
  display: flex !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Show all buttons for moderators */
.user-can-moderate .asv-mg-thumbs-btn,
.user-can-moderate .asv-mg-trash-btn,
.user-can-moderate .asv-mg-plus-btn {
  display: flex !important;
  visibility: visible !important;
}

/* Mobile-specific: maintain visibility rules */
@media (max-width: 768px) {
  body:not(.logged-in) .asv-mg-thumbs-btn,
  body:not(.logged-in) .asv-mg-trash-btn,
  .user-guest .asv-mg-thumbs-btn,
  .user-guest .asv-mg-trash-btn {
    display: none !important;
    visibility: hidden !important;
  }
  
  .asv-mg-action-buttons {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ============================================================
   INACTIVE PLACEHOLDER BUTTONS
   ============================================================ */

/* Inactive placeholder buttons - hover effect but no click action */
.asv-mg-category-btn.inactive {
  background: #e8ddf3 !important;
  color: #999999 !important;
  cursor: default !important;
  opacity: 0.7 !important;
}

.asv-mg-category-btn.inactive:hover {
  background: #ded1eb !important;
  color: #888888 !important;
  transform: none !important;
  font-weight: 400 !important;
}

/* Prevent active styling on inactive buttons */
.asv-mg-category-btn.inactive.active {
  background: #e8ddf3 !important;
  color: #999999 !important;
  font-weight: 400 !important;
}

/* ============================================================
   LOGGED-OUT ZOOM BUTTON STYLE (View Full Size)
   ============================================================ */
body:not(.logged-in) .asv-mg-plus-btn {
  border-radius: 22px 0 0 22px !important; /* Rounded left corners only */
  border-top-right-radius: 0 !important;   /* Sharp right edge */
  border-bottom-right-radius: 0 !important;
  background: #fff !important;
  border: 1px solid #000 !important;
  color: #000 !important;
  width: 42px !important;
  height: 42px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 28px !important;
  font-weight: 400 !important;
  color: #000 !important;
  position: absolute !important;
  top: 20px !important;
  right: 20px !important;
  cursor: pointer !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
  font-family: 'Poppins', sans-serif !important;
  
}
body:not(.logged-in) .asv-mg-plus-btn:hover {
  background: #f8f8f8 !important;
  transform: translateY(-1px) !important;
}

/* Remove double background under Zoom button for logged-out users */
body:not(.logged-in) .asv-mg-action-buttons {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}