/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Oct 26, 2025, 10:43:32 AM
    Author     : myski
*/
/* Anchor Ad Base */
#anchor-ad { position: fixed;
    background: #be7bf0; 
    /**/ 
 
/*top: 0; bottom: auto;
  left: 0;
  right: 0;
  color: white;
  padding: 10px 20px;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease, opacity 0.4s ease;*/
}

/* Anchor Ad positions */
#anchor-ad.bottom {
  bottom: 0;
}

#anchor-ad.top {
  top: 0;
}

/* Ad Content */
.bottom_ad_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 800px;
}

#bottom_ad_content span {
  font-size: 1rem;
}

/* Close button */
#close-anchor {
  background: none;
  border: none;
  color: black;
  font-size: 1.2rem;
  cursor: pointer;
  margin-left: 10px;
  transition: color 0.2s;
}

#close-anchor:hover {
  color: #ff5757;
}

/* Hide animation */
#anchor-ad.hidden {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}

