/* Notification Styles */
.iframe-notification {
    padding: 15px;
    text-align: center;
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
}

.iframe-notification .iframe-notification-message {
    font-size: 16px;
}

.iframe-notification-close {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.iframe-notification-close:hover {
    background-color: #d32f2f;
}
