.frontend-edit-wrapper {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
}

.btn-backend-edit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background-color: #2b3e50; /* Фирменный цвет October CMS */
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 4px;
    font-size: 13px;
    font-family: sans-serif;
    font-weight: 600;
    border: 1px solid rgba(0,0,0,0.1);
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-backend-edit:hover {
    background-color: #1e2b38;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

.btn-backend-edit:active {
    transform: translateY(0);
}

.btn-backend-edit svg {
    display: block;
    flex-shrink: 0;
}