/* Container setup */
#nextdaydoctor_pricing 
{
    display: flex;
    
    flex-wrap: wrap;
    text-align: center;;
    gap: 20px;
    justify-content: center;
    padding: 20px;
    /*background-color: #f9f9f9;
    background-color: rgba(242, 242, 242, 0.6);*/
    font-family: 'Helvetica Neue', sans-serif !important;
    font-size: 16px !important
  }
  
  /* Card styling */
  .plan_card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    min-width: 400px;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease;

    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }


  /* Header (sticky at top) */
  .nddpricingheader {
    flex: 0 0 55px;
    background: #0078FF;
    color: #fff;
    display: flex;
    align-items: center; 
    justify-content: center;
    width: 100%;
    font-size: 20px;
     /* Undershadow effect */
    /*z-index: 1000;  Ensure the header is above other content */
  }
  .nddpricingsection 
  {
    flex: 0 0 55px;
    color: #0077cc;
    font-weight: bold;
    display: flex;
    align-items: center; 
    justify-content: center;
    width: 100%;
    font-size: 20px;
  }

  /* Scrollable Messages Area */
.nddpricing_content_container 
{
    flex: 1;
    overflow-y: auto;
    padding: 30px 15px;
    width: 100%;
    background: #f5f5f5;
  
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.nddbookbutton 
{
    flex: 0 0 60px;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background: #fff;
  border-top: 1px solid #ddd;
  box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.2); /* Top shadow effect */
  width: 100%;
}
 
  
.nddpowerlink
{
    color: white;
    text-decoration: none;
    font-size: 13px;
    text-align: center;
    width: 100%;
    display: block;
    padding: 10px 0;
    margin-bottom: 50px;
}

.nddservice_td
{
	text-align: left;
}
.nddpricing_td
{
  text-align: right;
}
  
  /* Plan title */
  .plan_card h3 {
    margin-top: 16px;
    font-size: 24px;
    color: #333;
  }
  
  /* Price */
  .plan_card p.price {
    font-size: 20px;
    color: #0077cc;
    font-weight: bold;
    margin-bottom: 16px;
  }
  
  /* Description */
  .plan_card p.description {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
}
 
  
 
  
  /* Features list */
  .plan_card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
  }
  
  .plan_card ul li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: #555;
  }
  
  /* Button */
  .plan_card button {
    background-color: #0077cc;
    color: #fff;
    border: none;
    width: 100%;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }
  
  .plan_card button:hover {
    background-color: #005fa3;
  }
  
  /* Reference text */
  #nextdaydoctor_pricing p:last-child {
    margin-top: 30px;
    font-size: 0.85rem;
    text-align: center;
    width: 100%;
  }
  
  #nextdaydoctor_pricing p:last-child a {
    color: #0077cc;
    text-decoration: none;
  }
  
