.devx-edit-profile{
    max-width:1000px;
    margin:30px auto;
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    font-family:Arial,sans-serif;
}

.devx-edit-profile h2{
    margin-bottom:25px;
    color:#2563eb;
}

.devx-card{
    margin-bottom:30px;
    padding:20px;
    border:1px solid #ddd;
    border-radius:10px;
}

.devx-card h3{
    margin-top:0;
    color:#2563eb;
}

.devx-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:15px;
}

.devx-field label{
    display:block;
    font-weight:bold;
    margin-bottom:5px;
}

.devx-field input,
.devx-field select,
.devx-field textarea{
    width:100%;
    padding:10px;
    border:1px solid #ccc;
    border-radius:6px;
    box-sizing:border-box;
}

.devx-field input[readonly]{
    background:#f5f5f5;
}

.devx-btn{
    background:#2563eb;
    color:#fff;
    border:none;
    padding:12px 30px;
    border-radius:6px;
    cursor:pointer;
    font-size:16px;
}

.devx-btn:hover{
    background:#1d4ed8;
}

.devx-success{
    background:#d4edda;
    color:#155724;
    padding:15px;
    border-radius:6px;
    margin-bottom:20px;
}