body {
    font-family: Arial, sans-serif;
    background: #f0f2f5;
    margin: 0;
}

.box {
    max-width: 500px;
    margin: 60px auto;
    background: #fff;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

h1 {
    margin-bottom: 20px;
}

/* ================= PROFILE VIEW ================= */

.field {
    margin-bottom: 16px;
}

.label {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}

.value {
    font-size: 15px;
    font-weight: 500;
    padding: 8px 10px;
    background: #f7f7f7;
    border-radius: 6px;
}

/* ================= ACTIONS ================= */

.actions {
    margin-top: 24px;
    display: flex;
    gap: 10px;
}

button {
    padding: 10px 14px;
    border: 0;
    border-radius: 6px;
    background: #2f2f2f;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

button:hover {
    background: #1f1f1f;
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

button.secondary {
    background: #e0e0e0;
    color: #333;
}

button.secondary:hover {
    background: #d0d0d0;
}

/* ================= MESSAGE ================= */

.msg {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 6px;
    display: none;
    font-size: 14px;
    line-height: 1.4;
}

.msg.msg-success {
    background: #e6f4ea;
    border: 1px solid #c3e6cb;
    color: #1e7e34;
}

.msg.msg-error {
    background: #fdecea;
    border: 1px solid #f5c6cb;
    color: #a94442;
}