.editable-text {
    cursor: text;
    border: 1px dashed transparent;
    transition: all 0.2s;
}

.editable-text:hover {
    border-color: rgba(0, 76, 151, 0.3);
}

.editable-text:focus {
    outline: none;
    background-color: rgba(255, 130, 0, 0.1);
    border-color: var(--orange);
    padding: 2px;
    border-radius: 4px;
}

.president-image, .editable-image {
    cursor: pointer;
    position: relative;
}

.president-image:hover::after, .editable-image:hover::after {
    content: "Click to upload";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border-radius: inherit;
}

.editor-controls {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    gap: 10px;
}
