.ways_card {
    overflow: hidden;
    transition: transform 0.3s ease;
}
.ways_card:hover {
    transform: scale(1.1);
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 20px;
    background-color: #007bff;
    color: white;
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.chat-button:hover {
    background-color: #0056b3;
}
.chat-button i {
    margin-right: 10px;
}
#ad-topcontainer {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}
#ad-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}
#close-button {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: red;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    z-index: 10001;
}
#ad-content {
    position: relative;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.ad-content {
    width: 100%;
    height: auto;
    max-width: 480px;
}
.social-bar {
    height: 300px;
    width: 100%;
    background-color: white;
    z-index: 999;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }
  
  .close-ad {
    height: 25px;
    text-align: right;
    margin-right: 10px;
  }
  
  .close-btn-dismiss {
    color: black;
    font-weight: bold;
    padding: 5px;
  }
  