        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
        }
        .popup {
            color: white;
            background: rgb(0, 0, 0);
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(255, 255, 255, 0.5);
            width: 500px;
            height: 400px;
            text-align: center;
            position: relative;
        }
        .popup-header {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        .popup-header img {
            width: 50px;
            padding-left: 20px;
            padding-top: 20px;
            height: 50px;
            margin-right: 10px;
        }
        .popup-headerTitle {
            color: white;
            padding-top: 20px;
        }
        .popup-container {
            background-color: #111111;
            width: 500px;
            box-shadow: 0 4px 20px rgba(255, 255, 255, 0.5);
            height: 400px;
            border-radius: 8px;
        }
        .popup-Title {
            margin-top: -30px;
            margin-right: 200px;
            font-size: 20px;
        }
        .popup-content {
            font-size: 16px;
            margin-top: 20px;
        }
        .close-btn {
            cursor: pointer;
            background: #111111;
            box-shadow: 0 4px 20px rgba(255, 255, 255, 0.5);
            color: white;
            border: none;
            border-radius: 50%;
            position: absolute;
            top: 10px;
            right: 10px;
            width: 30px;
            height: 30px;
            font-size: 20px;
            line-height: 30px;
        }