body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
.popup {
    position: relative;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    width: 600px;
    overflow: hidden;
}
.popup-header {
    padding: 16px;
    background-color: #f5f5f5;
    font-size: 1.25em;
    font-weight: bold;
    text-align: center;
}
.popup-content {
    padding: 16px;
}
.popup iframe {
    width: 100%;
    height: 315px;
    border: none;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff5f5f;
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.2em;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1001; /* Ensure it stays above the popup content */
}
.floating-div {
    position: fixed;
    right: 5px;
    bottom: 64px;
    transform: translateY(-50%);
    background: #ff0000;
    color: white;
    width: 60px;
    height: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 1em;
    display: flex;
    justify-content: left;
    align-items: left;
    transition: width 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
    z-index: 2000;
    overflow: hidden;
    opacity: 0.6;
}
.floating-div i {
    margin-right: 0;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 15px;
    font-size: 2em;
    transition: margin-right 0.3s ease, margin-left 0.3s ease;
}
.floating-div span {
    opacity: 0;
    white-space: nowrap;
    font-size: 0.9em;
    font-weight: bold;
    margin-left: 3px;
    transition: opacity 0.3s ease;
}
.floating-div:hover {
    width: 150px;
    padding-left: 10px;
    justify-content: center;
    align-items: center;
    opacity: 1;
}
.floating-div:hover i {
    font-size: inherit;
    margin-right: 3px;
    margin-left: auto;
}
.floating-div:hover span {
    opacity: 1;
    margin-right: auto;
}