/* Plus Icon Styles */
.rp-plus-icon {
  position: absolute;
  width: 15px;
  height: 15px;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 5;
}

.rp-plus-icon:hover {
  transform: scale(1.2);
}

.rp-line-h {
  width: 15px;
  height: 1px;
  position: absolute;
  top: 7px;
  left: 0;
  background-color: #2d83c1;
}

.rp-line-v {
  width: 1px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 7px;
  background-color: #2d83c1;
}

/* Media Queries for Responsive Design */
@media (min-width: 768px) {
  .rp-plus-icon {
    width: 20px;
    height: 20px;
    bottom: 15px;
    right: 15px;
  }
  
  .rp-line-h {
    width: 20px;
    height: 2px;
    top: 9px;
  }
  
  .rp-line-v {
    width: 2px;
    height: 20px;
    left: 9px;
  }
}

@media (min-width: 1024px) {
  .rp-plus-icon {
    width: 30px;
    height: 30px;
    bottom: 20px;
    right: 20px;
  }
  
  .rp-line-h {
    width: 30px;
    height: 2px;
    top: 14px;
  }
  
  .rp-line-v {
    width: 2px;
    height: 30px;
    left: 14px;
  }
}
