/* General styles */
#shishara-cookie-box {
  position: fixed;
  background: linear-gradient(135deg, #202528, #131417);
  border: 1px solid rgba(0, 0, 0, .45);
  box-shadow: 0 0 16px 2px rgba(0, 0, 0, .05), 0 10px 10px 2px rgba(0, 0, 0, .05);
  color: #000;
  border-radius: 10px;
  padding: 15px;
  z-index: 9999;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

/* PC version - bottom right */
.shishara-cookie-box {
  bottom: 20px;
  right: 20px;
  width: 400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease-in-out;
}

/* Mobile version - bottom full width */
@media screen and (max-width: 768px) {
  .shishara-cookie-box {
      bottom: 0;
      right: 0;
      left: 0;
      border-radius: 0;
      place-self: center;
      width: 90%;
      margin-bottom: 5px;
  }
}

/* Cookie content */
.shishara-cookie-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shishara-cookie-content p {
  color: #fff;
  font-family: monospace;
  font-weight: bold;
}

/* Cookie image */
.shishara-cookie-image {
  width: 40px;
  height: 40px;
}

.shishara-cookie-link {
  color: #f0ba48;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.shishara-cookie-link:hover {
  color: #F09D27;
}

/* Button styles */
.shishara-cookie-button {
  font-weight: bold;
  background-color: #f0ba48;
  color: #000;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.shishara-cookie-button:hover {
  background-color: #F09D27;
}

/* Show the box */
.shishara-cookie-box.show {
  visibility: visible;
  opacity: 1;
}
