/* Enhanced notification banner */
.bitcx-ppn-notification-banner.bitcx-ppn-modern-template {
  position: fixed;
  /* display: flex; */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 391px;
  /* min-width: 298px; */
  width: fit-content;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 55px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 100;
  transition: all 0.3s ease;
  opacity: 1;
  width: 100%;
  border: 1px solid black;
}

.bitcx-ppn-notification-banner:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.bitcx-ppn-bottom-left {
  bottom: 24px;
  left: 24px;
}

.bitcx-ppn-bottom-right {
  bottom: 24px;
  right: 24px;
}

/* Close button */
.bitcx-ppn-modern-template .bitcx-ppn-icon-div {
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 101;
  opacity: 0.7;
  cursor: pointer;
}

.bitcx-ppn-modern-template .bitcx-ppn-icon-div:hover line {
  stroke: rgb(242, 78, 78) !important;
}

.bitcx-ppn-modern-template .bitcx-ppn-icon-div span {
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  color: #555;
  /* background-color: #f1f1f1; */

  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

/* .bitcx-ppn-icon-div span:hover {
    color: #ff3b3b;
    background-color: #f7f7f7;
    transform: scale(1.1);
  } */

/* Image section */
.bitcx-ppn-modern-template .bitcx-ppn-notification-img-div {
  width: 25%;
  height: 100%;
  overflow: hidden;
  position: relative;
  /* margin: auto; */
  padding-left: 5px;
  padding-block: 10px;
}

.bitcx-ppn-modern-template .bitcx-ppn-notification-img-div a {
  display: block;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bitcx-ppn-modern-template .bitcx-ppn-notification-img-div img {
	display: block;
	width: 100%;
	/* max-width: 60px; */
	height: 100%;
	/* max-height: 60px; */
	object-fit: cover;
	/* margin: auto; */
	transition: transform 0.3s ease;
	height: 85px !important;
	height: 75px !important;
	width: 75px;
	border-radius: 50%;
}

.bitcx-ppn-modern-template .bitcx-ppn-notification-img-div img:hover {
  transform: scale(1.08);
}

/* Text content */
.bitcx-ppn-modern-template .bitcx-ppn-notification-text {
  width: 75%;
  padding: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 15px;
}

.bitcx-ppn-modern-template .bitcx-ppn-para {
  display: block;
  font-size: 14px;
  color: #888;
  margin-bottom: 2px;
  /* margin-top: 5px; */
  line-height: 1.4;
  font-weight: 400;
  padding: 5px 10px;
  color: white;
  background: black;
}
.bitcx-ppn-modern-template .bitcx-ppn-notification-text-full-width a .bitcx-ppn-heading,.bitcx-ppn-notification-text-full-width .bitcx-ppn-small,.bitcx-ppn-notification-text-full-width .bitcx-ppn-rating
{
  padding-inline: 10px;
}
.bitcx-ppn-modern-template .bitcx-ppn-notification-text-full-width a
{
  text-decoration: none;
}
.bitcx-ppn-modern-template .bitcx-ppn-notification-text-full-width .bitcx-ppn-rating
{
  margin-bottom: 8px;
}

.bitcx-ppn-modern-template .bitcx-ppn-heading {
  display: block;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 500;
  color: #333;
  margin-bottom: 4px;
}

.bitcx-ppn-modern-template .bitcx-ppn-small {
  font-size: 12px;
  color: #999;
  display: block;
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
  .bitcx-ppn-notification-banner {
    max-width: 320px;
  }
}

@media screen and (max-width: 400px) {
  .bitcx-ppn-notification-banner {
    max-width: 90vw;
  }

  .bitcx-ppn-modern-template .bitcx-ppn-notification-img-div {
    width: 35%;
  }

  .bitcx-ppn-modern-template .bitcx-ppn-notification-text {
    width: 65%;
    padding: 12px 8px;
  }

  .bitcx-ppn-modern-template .bitcx-ppn-heading {
    font-size: 14px;
  }
}

/* Add to existing banner-style.css */
.bitcx-ppn-modern-template .bitcx-ppn-rating {
  line-height: 1;
  letter-spacing: 1px;
  margin-top: 5px;
}

.bitcx-ppn-modern-template .bitcx-ppn-star-full {
  color: #ffc107;
}

.bitcx-ppn-modern-template .bitcx-ppn-star-half {
  color: #ffc107;
  position: relative;
}

.bitcx-ppn-modern-template .bitcx-ppn-star-half::after {
  content: "☆";
  position: absolute;
  left: 0;
  width: 50%;
  overflow: hidden;
  color: #ccc;
}

.bitcx-ppn-modern-template .bitcx-ppn-star-empty {
  color: #ccc;
}

.bitcx-ppn-modern-template .bitcs-ppn-notification-body {
	display: flex;
	align-items: center;
}

.bitcx-ppn-modern-template .bitcx-ppn-icon-div>span>span {
  display: none !important;
}

.bitcx-ppn-modern-template .bitcx-ppn-small:has(+.bitcx-ppn-rating)
{
  margin-bottom: 0px;
}
.bitcx-ppn-modern-template .bitcx-ppn-small
{
  margin-bottom: 8px;
}
.bitcx-ppn-modern-template .bitcx-notifcation-head
{
  display: none;
}
.bitcx-ppn-modern-template .bitcx-name-inside
{
  font-size: 12px;
}
.bitcx-ppn-modern-template .bitcx-ppn-notification-text-full-width
{
  padding-inline: 30px;
}
.bitcx-ppn-modern-template .bitcx-ppn-notification-text-full-width>*,.bitcx-ppn-modern-template .bitcx-ppn-notification-text-full-width a .bitcx-ppn-heading
{
  padding: 0 !important;
}
.bitcx-ppn-modern-template .bitcx-ppn-icon-div
{
  display: none;
}