.edit-mode-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(214, 47, 86, 0.3);
    z-index: 200;
    transition: all 0.3s;
}

.edit-mode-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(214, 47, 86, 0.4);
}

.edit-mode-active {
    background: #4CAF50 !important;
}

.editable-active {
    outline: 2px dashed var(--primary);
    outline-offset: 2px;
    cursor: text;
    min-height: 20px;
}

.editable-active:hover {
    outline-color: #4CAF50;
}

.save-indicator {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    z-index: 300;
    display: none;
    font-family: 'Rubik', sans-serif;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
