/* Overlay Effect */
.custom-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  backdrop-filter: blur(5px); /* Apply blur effect to the background */
}

/* Wallet Modal Styling */
.custom-wallet-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* This centers the wallet modal */
  width: 80%;
  max-width: 800px;
  background-color: white;
  z-index: 99999999999999;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Optional shadow to make modal pop */
}

.custom-wallet-modal .custom-modal-content {
  padding: 20px;
}

/* Cart Albums Modal Styling */
.custom-cart-albums-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center the cart albums modal */
  width: 80%;
  max-width: 800px;
  background-color: white;
  z-index: 1000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Optional shadow to make modal pop */
}

.custom-cart-albums-modal .custom-modal-content {
  padding: 20px;
}

/* Close Button */
.custom-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* If the modal content includes an iframe */
iframe {
  width: 100%;
  height: 500px;
  border: none;
}

/* Button style */
.woo-wallet-menu-contents {
  padding: 22px 20px;
  border: none;
  cursor: pointer;
  color: #fff !important;
}

.woo-wallet-menu-contents:hover {
  background-color: #005bb5;
}

/* Optional Styling for Cart Albums Modal Button */
.cart-icon-link {
  padding: 22px 20px;
  border: none;
  cursor: pointer;
}

.cart-icon-link:hover {
  background-color: #005bb5;
}


/* Existing styles for .tooltip */
.tooltip {
  background-color: #333;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 10px;
  display: inline-block;
  max-width: 100%;
  position: relative;
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

/* Upload profile photo tooltip */
/* Existing tooltip styles */
.custom-tooltip {
    position: absolute;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: block;
    margin-top: 30px;
    font-family: Roboto, sans-serif;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.custom-tooltip .tooltip-content p {
    margin: 0 0 10px;
    font-size: 14px;
    color: #333;
}

.custom-tooltip .tooltip-content p:last-child {
    margin-bottom: 0;
}

/* New "Best quality pictures are featured" tooltip styles */
.featured-quality-tooltip {
    position: absolute; /* Absolute positioning within the parent container */
    top: 5%; /* Adjust as needed */
    left: 70%; /* Adjust as needed */
    background-color: lightgray; /* Light gray background */
    color: black; /* Black text */
    padding: 12px 16px; /* Padding for spacing */
    border-radius: 8px; /* Rounded corners */
    font-family: Roboto, sans-serif; /* Consistent font */
    font-size: 14px; /* Font size */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    z-index: 1001; /* Ensure it's above other elements */
    opacity: 1; /* Fully visible by default */
    transition: opacity 0.3s ease; /* Smooth hover effect */
}

.featured-quality-tooltip .tooltip-content p {
    margin: 0; /* Remove default margin */
}

/* Add a small arrow (message bubble pointer) on the left side */
.featured-quality-tooltip::after {
    content: '';
    position: absolute;
    left: -16px; /* Position the arrow to the left of the tooltip */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust for perfect vertical centering */
    border-width: 8px; /* Size of the arrow */
    border-style: solid;
    border-color: transparent lightgray transparent transparent; /* Light gray arrow pointing left */
}

.custom-modal {
    max-height: 90vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

.rating-textarea {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.call-status-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 10px !important;
}

