
        #overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 1);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .consent-box {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
        }

        .buttons {
            margin-top: 20px;
        }

        .button2 {
            padding: 10px 30px;
            margin: 0 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            transition: 0.3s;
        }

        #accept {
            background: #f44336;
            color: white;
        }

        #reject {
            background: #4CAF50;
            color: white;
        }
		#but {
            color: red;
        }
		#but2 {
            color: grey;
        }

        button:hover {
            opacity: 0.9;
            transform: scale(1.05);
        }

        .content {
            display: none;
            
        }