/* Aboulay Admin UI Profile Uploads */
.aboulay-profile-upload-card{
  max-width:1100px;
  margin:30px auto;
  padding:26px;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(15,23,42,.07);
}

.aboulay-profile-upload-card h2{
  margin:0 0 10px;
  color:#13233a;
  font-size:30px;
}

.aboulay-upload-intro{
  margin:0 0 20px;
  color:#5b6b7a;
  line-height:1.7;
}

.aboulay-profile-upload-form{
  display:grid;
  gap:20px;
}

.aboulay-upload-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
}

.aboulay-upload-field{
  padding:18px;
  background:#f8fafc;
  border:1px solid #e5e7eb;
  border-radius:16px;
}

.aboulay-upload-field.full{
  display:grid;
  gap:10px;
}

.aboulay-upload-field label{
  display:block;
  margin-bottom:10px;
  color:#13233a;
}

.aboulay-upload-field input[type="file"],
.aboulay-upload-field textarea{
  width:100%;
  box-sizing:border-box;
  padding:12px;
  border:1px solid #d1d5db;
  border-radius:12px;
  background:#fff;
}

.aboulay-upload-field small{
  display:block;
  margin-top:8px;
  color:#64748b;
  line-height:1.5;
}

.aboulay-preview{
  min-height:58px;
  margin-bottom:12px;
  display:flex;
  align-items:center;
}

.aboulay-upload-thumb{
  width:88px;
  height:88px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid #e5e7eb;
  background:#fff;
}

.aboulay-empty{
  color:#64748b;
  font-style:italic;
}

.aboulay-file-link{
  display:inline-flex;
  align-items:center;
  padding:10px 12px;
  border-radius:10px;
  background:#ecfdf5;
  color:#0f766e;
  text-decoration:none;
  font-weight:700;
}

.aboulay-status{
  margin-top:10px;
  color:#243447;
}

.aboulay-upload-btn{
  justify-self:start;
  border:none;
  border-radius:12px;
  background:#0f766e;
  color:#fff;
  padding:14px 22px;
  font-weight:800;
  cursor:pointer;
}

.aboulay-upload-btn:hover{
  background:#0b5f59;
}

.aboulay-upload-notice{
  padding:12px 14px;
  border-radius:12px;
  margin:16px 0;
  font-weight:700;
}

.aboulay-upload-notice.success{
  background:#ecfdf5;
  color:#166534;
  border:1px solid #bbf7d0;
}

.aboulay-upload-notice.error{
  background:#fef2f2;
  color:#991b1b;
  border:1px solid #fecaca;
}

@media(max-width:700px){
  .aboulay-profile-upload-card{
    padding:18px;
  }
}
