/* الحاوية العامة */
.noqth-profile-container {
    width: 92%;
    max-width: 420px;
    margin: 20px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0,0,0,0.08);
    text-align: center;
    font-family: "Tajawal", sans-serif;
    box-sizing: border-box;
}

/* منع أي عنصر من الخروج خارج الشاشة */
* {
    box-sizing: border-box;
}

/* صورة المستخدم */
.noqth-profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #eee;
}

/* الاسم */
.noqth-name {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
}

/* الوظيفة */
.noqth-job {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
}

/* المدينة */
.noqth-city {
    font-size: 14px;
    color: #888;
    margin-bottom: 18px;
}

/* صندوق الميلاد */
.noqth-birth-section {
    margin: 25px 0;
}

.noqth-birth-title {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 10px;
}

.noqth-birth-box {
    background: #f7f7f7;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    margin-bottom: 12px;
    text-align: center;
}

/* Grid الميلاد */
.noqth-birth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.noqth-birth-item {
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    border: 1px solid #eee;
}

/* Grid الأيقونات */
.noqth-social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 25px 0;
}

.noqth-social-box {
    background: #f1f1f1;
    padding: 16px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.noqth-social-box img {
    width: 34px;
    height: 34px;
}

/* زر الاتصال */
.noqth-call-btn {
    display: block;
    background: #000;
    color: #fff;
    padding: 14px;
    text-align: center;
    border-radius: 12px;
    font-size: 17px;
    margin-top: 25px;
    text-decoration: none;
}

/* تحسين الجوال */
@media (max-width: 480px) {

    .noqth-profile-container {
        width: 94%;
        margin: 12px auto;
        padding: 18px;
    }

    .noqth-birth-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .noqth-birth-item {
        font-size: 13px;
        padding: 10px;
    }

    .noqth-social-grid {
        gap: 10px;
    }

    .noqth-social-box img {
        width: 30px;
        height: 30px;
    }
}

/* ------------------------------------------------------ */
/*  تنظيم لوحة التحكم (Admin UI) — الحقول عمودية بالكامل */
/* ------------------------------------------------------ */

.noqth-section label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

.noqth-section input[type="text"],
.noqth-section input[type="date"],
.noqth-section textarea,
.noqth-section select {
    width: 100% !important;
    display: block;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.noqth-section input[type="checkbox"] {
    margin-right: 5px;
    transform: scale(1.2);
}

.noqth-section h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: bold;
}

.noqth-section {
    margin-bottom: 30px;
}

.noqth-section br {
    display: none;
}
