/* container & card */
.onetap-profile-wrapper { display:flex; justify-content:center; padding:12px; }
.onetap-profile-card {
    width: 320px;
    background: #fff;
    color: #fff;
    border-radius: 8px;
    padding: 26px 18px;
    box-shadow: 0 8px 18px #0D2ED4;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

/* avatar */
.onetap-avatar {
    width: 130px;
    height: 130px;
    object-fit: cover;
    margin: 0 auto 14px;
    display:block;
}

/* name */
.onetap-name {
    font-size: 25px;
    font-weight: 600;
    color: #2b3f54;
    margin-bottom: 10px;
    text-transform: none;
}

/* meta (email/mobile) in red and center) */
.onetap-meta { margin: 6px 0; font-size: 15px; color: #000F0F; font-weight:200; }
.onetap-line { color: #000F0F; font-weight:200; }

/* buttons */
.onetap-btn {
    display:block;
    width: 100%;
    background: #0d86b2;
    color: #fff;
    padding: 12px 14px;
    margin: 10px 0;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    cursor:pointer;
    text-align:center;
}
.onetap-btn:hover { opacity: 0.95; transform: translateY(-1px); }
.onetap-btn.danger { background: #0d86b2; } /* same style; you can make it different if you want */

.onetap-btn:active { transform: translateY(0); }

/* modal overlay */
.onetap-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

/* modal content box */
.onetap-modal {
    width: 92%;
    max-width: 520px;
    background: #fff;
    border-radius: 8px;
    padding: 18px;
    color: #222;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* modal form elements */
.onetap-modal h3 { margin: 0 0 10px; }
.onetap-field { margin: 8px 0; text-align:left; }
.onetap-field label { display:block; font-weight:700; margin-bottom:6px; color:#222; }
.onetap-field input[type="text"], .onetap-field input[type="email"], .onetap-field input[type="date"], .onetap-field input[type="password"], .onetap-field select {
    width:100%; padding:8px 10px; border-radius:6px; border:1px solid #ccc; font-size:14px;
}

/* small row for upload */
.onetap-upload-row { display:flex; gap:8px; align-items:center; margin-top:8px; }
.onetap-upload-row input[type=file] { flex:1; }
.onetap-modal .modal-actions { margin-top:12px; text-align:right; }

/* notification (top center) */
.onetap-notify {
    position: fixed;
    left: 25%;
    transform: translateX(-50%);
    top: 100px;
    z-index: 110000;
    padding: 10px 16px;
    border-radius: 6px;
    display: none;
    font-weight:700;
}
.onetap-notify.success { background: #2ecc71; color:#fff; }
.onetap-notify.error { background: #e74c3c; color:#fff; }



/*////////////////////////////////*/
.onetap-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.onetap-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.onetap-field {
    display: flex;
    flex-direction: column;
}

.onetap-field label {
    font-weight: bold;
    margin-bottom: 5px;
}

.onetap-upload-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.modal-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

