/* WhatsApp Share Button - Minimal styling for functionality */
.wcrf-action-buttons .whatsapp-share-btn {
    padding: 7px !important;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
    text-transform: capitalize;
    border: 1px solid #dd1f5b !important;
    background: none !important;
    color: #dd1f5b !important;
     width: 100%;
    justify-content: center;
}

.wcrf-action-buttons {
 display: inline;
}

.wcrf-action-buttons .whatsapp-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wcrf-action-buttons .whatsapp-share-btn .fa-whatsapp {
    font-size: 23px !important;
}

/* Modal BG */
.wls-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

/* Modal Box */
.wls-modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  position: relative;
  border-radius: 8px;
}

/* Close X */
.wls-close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}

.wls-close:hover {
  color: #000;
}

/* Form Styling */
#wls-lead-form {
    margin-top: 15px;
}

#wls-lead-form h2 {
    margin-bottom: 15px;
    color: #333;
    font-size: 20px;
}

/* Fields */
#wls-lead-form input {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

#wls-lead-form input:focus {
    outline: none;
    border-color: #25D366;
}

/* Submit Button */
#wls-lead-form button {
  width: 100%;
  padding: 10px;
  background: #25D366;
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 5px;
}

#wls-lead-form button:hover {
    background: #128C7E;
}

/* Status Messages */
#wls-status {
    text-align: center;
}

#wls-status p {
    margin: 0;
    padding-top: 5px;
}

.wls-loader {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: wls-spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes wls-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .wls-modal-content {
        margin: 20% auto;
        padding: 15px;
        width: 95%;
    }
}