
/* Admonitions / Block Styles */
.is-style-firefly-note,
.is-style-firefly-tip,
.is-style-firefly-warning,
.is-style-firefly-important {
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid;
    background-color: var(--card-bg);
    position: relative;
}

.is-style-firefly-note {
    border-color: #3b82f6; /* Blue */
    background-color: rgba(59, 130, 246, 0.1);
}
.dark .is-style-firefly-note {
    background-color: rgba(59, 130, 246, 0.15);
}

.is-style-firefly-tip {
    border-color: #10b981; /* Green */
    background-color: rgba(16, 185, 129, 0.1);
}
.dark .is-style-firefly-tip {
    background-color: rgba(16, 185, 129, 0.15);
}

.is-style-firefly-warning {
    border-color: #f59e0b; /* Yellow/Orange */
    background-color: rgba(245, 158, 11, 0.1);
}
.dark .is-style-firefly-warning {
    background-color: rgba(245, 158, 11, 0.15);
}

.is-style-firefly-important {
    border-color: #ef4444; /* Red */
    background-color: rgba(239, 68, 68, 0.1);
}
.dark .is-style-firefly-important {
    background-color: rgba(239, 68, 68, 0.15);
}

/* Copy Code Button */
.hljs-container {
    position: relative;
}

.copy-code-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 0.375rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    opacity: 0;
    transition: all 0.2s;
    z-index: 10;
}

.hljs-container:hover .copy-code-btn {
    opacity: 1;
}

.copy-code-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.copy-code-btn.copied {
    background-color: #10b981;
    border-color: #10b981;
    color: #fff;
}
