/* Custom styling for Legacy and DRAGONS topic blocks */

/* Legacy pipeline blocks - maroon background matching MaroonX logo */
.topic.legacy-block {
    background-color: #FEE8DD;
    border-left: 4px solid #A1342D;
    padding: 1em;
    margin: 1em 0;
}

.topic.legacy-block .topic-title {
    color: #65241F;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 0.5em;
}

/* DRAGONS pipeline blocks - cool blue/cyan background */
.topic.dragons-block {
    background-color: #e8f4f8;
    border-left: 4px solid #4a90a4;
    padding: 1em;
    margin: 1em 0;
}

.topic.dragons-block .topic-title {
    color: #1e5a6e;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 0.5em;
}

/* Ensure code blocks inside topics maintain readability */
.topic.legacy-block .highlight,
.topic.dragons-block .highlight {
    margin: 0.5em 0;
}

/* Add subtle shadow for depth */
.topic.legacy-block,
.topic.dragons-block {
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border-radius: 3px;
}

/* Fix clipboard button icon size for sphinx-copybutton */
button.copybtn {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0.3em;
    right: 0.3em;
    width: 1.7em;
    height: 1.7em;
    padding: 0;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

button.copybtn img,
button.copybtn svg {
    width: 1.5em !important;
    height: 1.5em !important;
    display: block;
}

button.copybtn:hover {
    opacity: 0.7;
}