@keyframes show {
	0% {
		opacity: 0;
	}
				 
	100% {
		opacity: 1;
	}            
}

@keyframes hide {
	0% {
		opacity: 1;
	}
			 
	100% {
		opacity: 0;
	}
} 

.toast_box {
	/* width: 100%; */
	position: absolute;
	bottom: 50%;
	left: 50%;
	/* justify-content: center; */
	z-index: 10;
	transform: translate(-50%, -50%);
	display: none;
}
			 
.toast_box p {
	box-sizing: border-box;
	padding: 10px 20px;
	width: max-content;
	/* 提示框的背景色 */
	background: #707070;
	color: #fff;
	font-size: 16px;
	text-align: center;
	border-radius: 6px;
	opacity: 0.8;
} 

.toliet{
	margin: 0 auto;
}

/* Download button styles */
.download-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.download-button:hover {
    background-color: #0056b3;
}

/* Code block with copy button styles */
.code-block {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    padding-top: 0;
    padding-bottom: 0;
    margin: 10px 0;
}

.copy-button {
    margin-left: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 3px 8px;
    cursor: pointer;
    font-size: 30px;
    transition: background-color 0.3s;
}

.copy-button:hover {
    background-color: #0056b3;
}

/* Dark mode optimizations */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #e0e0e0;
    }
    
    .download-button {
        background-color: #1a73e8;
    }
    
    .download-button:hover {
        background-color: #0d62da;
    }
    
    .code-block {
        border-color: #444;
    }
    
    .copy-button {
        background-color: #1a73e8;
    }
    
    .copy-button:hover {
        background-color: #0d62da;
    }
}
