/* Shared Editor Section Styles */
.edit-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.2s;
}
.edit-section:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-box.phone { background: rgba(99, 102, 241, 0.1); color: #818cf8; }
.icon-box.email { background: rgba(236, 72, 153, 0.1); color: #f472b6; }
.icon-box.web { background: rgba(16, 185, 129, 0.1); color: #34d399; }
.icon-box.location { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
