        /* Prefix semua class dengan deepseek */
        .deepseek-container {
			max-width: 1000px;
			margin: 0 auto;
			padding: 0px;
			font-family: Arial, sans-serif;
			position: relative;
		}
        .deepseek-content-box {
			width: 100%;
			min-height: 300px;
			border: 2px solid #000;
			border-radius: 8px;
			margin-bottom: 20px;
			padding: 15px;
			box-sizing: border-box;
			background-color: #292a2d;
			display: flex;
			align-items: center;
			justify-content: center;
			flex-direction: column;
        }
        .deepseek-content-box iframe {
            width: 100%;
            min-height: 300px;
            border: none;
            border-radius: 4px;
        }
        .deepseek-button-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .deepseek-left-buttons, .deepseek-right-buttons {
            display: flex;
            flex-wrap: wrap;
            position: relative;
        }

        .deepseek-left-buttons {
            gap: 15px;
            z-index: 10;
        }

        .deepseek-right-buttons {
            gap: 10px;
            z-index: 1;
        }

        .deepseek-button {
            padding: 10px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            background-color: #4a6fa5;
            color: white;
            position: relative;
            white-space: nowrap;
            z-index: 1;
        }

        .deepseek-button:hover {
            background-color: #3a5a8a;
            transform: translateY(-2px);
        }

        .deepseek-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 160px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            z-index: 1000;
            border-radius: 5px;
            overflow: hidden;
        }

        .deepseek-dropdown a {
            color: #333;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            transition: background-color 0.3s;
        }

        .deepseek-dropdown a:hover {
            background-color: #f1f1f1;
        }

        .deepseek-show {
            display: block;
        }

        .deepseek-content {
            display: none;
            width: 100%;
            height: 100%;
        }

        .deepseek-active {
            display: block;
        }

        .deepseek-default-message {
            text-align: center;
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .deepseek-button-container {
                flex-direction: column;
                gap: 10px;
            }
            
            .deepseek-left-buttons, .deepseek-right-buttons {
                width: 100%;
                justify-content: space-between;
            }
            
            .deepseek-button {
                flex-grow: 1;
                text-align: center;
            }

            .deepseek-right-buttons {
                margin-top: 10px;
            }
        }

        @media (max-width: 480px) {
            .deepseek-button {
                padding: 8px 10px;
                font-size: 14px;
            }
            
            .deepseek-left-buttons, .deepseek-right-buttons {
                gap: 8px;

            }
        }

.error-message {
    color: #d9534f;
    padding: 10px;
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    border-radius: 4px;
}

/* Pastikan iframe tidak bisa mengeset cookie */
iframe {
    sandbox: allow-same-origin allow-scripts allow-popups allow-forms;
}