      /* style-switcher CSS */
#style-switcher {
  transition: all 0.4s;
  background: #ffffff;
  box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
  left: -189px;
  position: fixed;
  top: 17%;
  width: 189px;
  z-index: 9999;
  padding: 10px 5px;
}

#style-switcher div {
  padding: 5px 10px;
}

#style-switcher .bottom a.settings,
#style-switcher .bottom button.settings {
  background: #ffffff;
  height: 41px;
  position: absolute;
  right: -41px;
  top: 0px;
  width: 40px;
  padding: 3px;
  border-radius: 0 30px 30px 0;
  border: none;
  cursor: pointer;
  outline: none;
}

#style-switcher .bottom a.settings:hover,
#style-switcher .bottom button.settings:hover {
  background-color: #f5f5f5;
}


.pulse {
  overflow: visible;
  position: relative;
}
.pulse::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: inherit;
  border-radius: inherit;
  -webkit-transition: opacity .3s, -webkit-transform .3s;
  transition: opacity .3s, -webkit-transform .3s;
  transition: opacity .3s, transform .3s;
  transition: opacity .3s, transform .3s, -webkit-transform .3s;
  -webkit-animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
          animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
  z-index: -1;
}

@-webkit-keyframes pulse-animation {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

@keyframes pulse-animation {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}





.NotificationPopQuotation {
  display: flex;
  align-items: center; /* Tengah secara menegak */
  justify-content: center; /* Tengah secara mendatar */
  position: fixed;
  top: 60px;
  left: 30px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #ccc;
  border-left: 5px solid #00aaff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 8px 8px;
  max-width: 280px;
  font-family: Arial, sans-serif;
  z-index: 9999;
  animation: fadeSlideIn 0.5s ease;
  backdrop-filter: blur(3px);
}

.NotificationPopQuotation img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-right: 8px;
  object-fit: contain;
}

.notification-content {
  display: flex;
  flex-direction: column;
}

.notification-title {
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 1px;
  color: #0077cc;
}

.notification-text {
  font-size: 12px;
  color: #333;
  line-height: 1.4;
}

.close-btn {
  position: absolute;
  top: 4px;
  right: 8px;
  font-size: 14px;
  color: #888;
  cursor: pointer;
}

.close-btn:hover {
  color: #444;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeSlideOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-20px); }
}

@media (max-width: 480px) {
  .NotificationPopQuotation {
    max-width: 75%;
    left: 5%;
    top: 50px;
    flex-direction: row;
    padding: 6px;
  }

  .NotificationPopQuotation img {
    width: 40px;
    height: 40px;
  }

  .notification-title {
    font-size: 12px;
  }

  .notification-text {
    font-size: 10.5px;
  }
}