body{
    margin:0;
    background:#eef2f7;
    font-family:'Cairo', sans-serif;
}

/* ===== نطاق خاص لمنع التعارض ===== */

.kw-upload{
    font-family:'Cairo', sans-serif;
    padding:30px 20px;
}

/* ===== الصندوق الرئيسي ===== */

.kw-box{
    max-width:1200px;
    margin:auto;
    background:#ffffff;
    border-radius:14px;
    padding:50px 60px;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

/* ===== العنوان ===== */

.kw-header{
    text-align:center;
    margin-bottom:45px;
}

.kw-header h1{
    margin:0;
    font-size:30px;
    font-weight:700;
    color:#2c7be5;
}

.kw-header span{
    display:block;
    margin-top:10px;
    color:#6c7a95;
    font-size:15px;
}

/* ===== خانات الرفع ===== */

.kw-files{
    margin-bottom:25px;
}

.kw-input{
    margin-bottom:12px;
}

.kw-input input{
    width:100%;
    padding:12px 14px;
    border:1px solid #d7deea;
    border-radius:8px;
    background:#f9fbff;
    transition:0.2s;
}

.kw-input input:hover{
    border-color:#2c7be5;
    background:#eef4ff;
}


/* ===== زر ===== */

.kw-btn{
    display:block;
    margin:10px auto 0; /* كان 40 وخفضناه */
    padding:14px 50px;
    background:linear-gradient(90deg,#2c7be5);
    border:none;
    border-radius:8px;
    color:#fff;
    font-size:20px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}
.kw-btn:hover{
    background:#28a745; /* أخضر نظيف */
    box-shadow:none;
    transform:none;
}


/* ===== معلومات ===== */

.kw-info{
    margin-top:35px;
    padding:14px 20px;
    background:#f1f6ff;
    border-left:4px solid #2c7be5;
    border-radius:6px;
    color:#5a6f8f;
    font-size:14px;
}
/* ===== تنبيهات ===== */

.kw-alert{
    margin-bottom:20px;
    padding:20px;
    border-radius:10px;
}

.kw-success{
    background:#e9f8ef;
    border-left:5px solid #28a745;
}

.kw-error{
    background:#ffecec;
    border-left:5px solid #dc3545;
}

.kw-alert-text{
    margin-bottom:15px;
    font-weight:600;
}

/* ===== روابط ===== */

.kw-links{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.kw-links input{
    flex:1;
    padding:10px;
    border:1px solid #d7deea;
    border-radius:6px;
    background:#fff;
    font-family:inherit;
}

.kw-view-btn{
    padding:10px 20px;
    background:#2c7be5;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-size:14px;
}

.kw-view-btn:hover{
    background:#1f6bd6;
}

/* ===== زر رجوع ===== */

.kw-back-btn{
    display:block;
    margin:40px auto 0;
    width:220px;
    text-align:center;
    padding:15px;
    background:#2c7be5;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-size:20px;
}

.kw-back-btn:hover{
    background:#55627a;
}
/* ===== زر إضافة ===== */

.kw-add-area{
    text-align:center;
    margin-top:15px;
}

.kw-add-btn{
    background:#eef4ff;
    border:1px solid #cfd8e6;
    padding:8px 18px;
    border-radius:6px;
    cursor:pointer;
    font-family:inherit;
}

.kw-add-btn:hover{
    background:#dce8ff;
}

/* ===== زر حذف ===== */

.kw-input{
    position:relative;
}

.kw-remove{
    position:absolute;
    left:10px;
    top:50%;
    transform:translateY(-50%);
    background:#dc3545;
    border:none;
    color:#fff;
    width:24px;
    height:24px;
    border-radius:50%;
    font-size:12px;
    cursor:pointer;
}

.kw-remove:hover{
    background:#b52a37;
}
/* ===== الحقوق ===== */

.kw-rights{
    text-align:center;
    margin-top:50px;
    padding-top:20px;
    border-top:1px solid #edf1f7;
    font-size:12px;
    color:#b8c1d9;
    opacity:0.65;
    transition:0.3s ease;
}

.kw-rights a{
    color:inherit;
    text-decoration:none;
    transition:0.3s ease;
}

.kw-rights:hover{
    opacity:1;
}

.kw-rights a:hover{
    color:#2c7be5;
}
