/* Anchor text styles */
.text-anchor {
    color: #0073aa;
    text-decoration: none;
    position: relative;
}

.text-anchor:hover {
    text-decoration: underline;
}

/* Button styles */
.wp-block-button {
    position: relative;
    margin: 1em 0;
}

.wp-block-button__link {
    display: inline-block;
    padding: 0.5em 1em;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Button styles - can be overridden by custom colors */
.wp-block-button__link.primary {
    background-color: #007cba;
    color: white;
    border: none;
}

.wp-block-button__link.secondary {
    background-color: #6c757d;
    color: white;
    border: none;
}

.wp-block-button__link.outline {
    background-color: transparent;
    color: #007cba;
    border: 2px solid #007cba;
}

/* Button sizes */
.wp-block-button__link.small {
    font-size: 14px;
    padding: 0.4em 0.8em;
}

.wp-block-button__link.normal {
    font-size: 16px;
    padding: 0.5em 1em;
}

.wp-block-button__link.large {
    font-size: 18px;
    padding: 0.6em 1.2em;
}

/* Anchor indicator in editor */
.anchor-indicator {
    position: absolute;
    top: -20px;
    left: 0;
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    color: #666;
}