@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");

body {
    margin: 0;
}

.phonexaWidgetContainer {
    font-family: "Poppins", sans-serif;
    background: rgba(210, 236, 247, 0.2);
    width: 670px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
  }
  
  .phonexaInnerWidget {
    text-align: center;
    background: white;
    padding-top: 20px;
    padding-bottom: 10px;
    border-radius: 0.5rem;
    width: 70%;
  }
  
  .callNowBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 65px;
    border-radius: 7px;
    background:#4caf50;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
    transition: transform 120ms ease, box-shadow 120ms ease, filter 120ms ease;
    white-space: normal;         
    position: relative;
    overflow: hidden;
    background: transparent !important;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    background-blend-mode: normal !important;
    box-shadow:
      inset 0 0 0 100vmax #4caf50,
      0 1px 2px rgba(0,0,0,0.06),
      0 4px 12px rgba(0,0,0,0.08) !important;
  }
  
  .callNowBtn:hover {
    filter: brightness(0.96);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.08), 0 8px 18px rgba(0,0,0,0.10);
  }
  
  .callNowBtn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.08);
  }
  
  .callNowBtn:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
  }
  
  .callNowSubHeader {
    margin: 8px 0 0 0;
    font-size: 14px;
    opacity: 0.8;
    color: #424494;
  }

  .hidden {
    display: none;
  }
  