.gladiatus-guide-editor {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.editor-controls {
    position: sticky;
    top: 0;
    background: #fff;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    z-index: 100;
    display: flex;
    gap: 10px;
    align-items: center;
}

.editor-controls .button {
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.editor-controls .button-primary {
    background: #0073aa;
    color: #fff;
    border: none;
}

.editor-controls .button-primary:hover {
    background: #005177;
}

.save-status {
    margin-left: 10px;
    color: #46b450;
    display: none;
}

.save-status.show {
    display: inline-block;
    animation: fadeInOut 2s ease-in-out;
}

.guide-content {
    margin-top: 20px;
}

.guide-content.editable {
    outline: 2px dashed #0073aa;
    padding: 10px;
}

.guide-content img {
    max-width: 100%;
    height: auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.guide-content img:hover {
    opacity: 0.8;
}

.image-upload-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
}

.modal-content h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.modal-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.upload-status {
    margin-top: 10px;
    color: #666;
}

@keyframes fadeInOut {
    0% { opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
} 