
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;600;700;900&display=swap');


.body-me {
  font-family: "Segoe UI", Arial, sans-serif;

  /* font-family: 'Cairo', sans-serif; */
  --tw-text-opacity: 1;
  color: rgba(103,103,103,var(--tw-text-opacity));

  font-size: 16px;
  /* background: #FCFCFD; */
  
  
}
.english-numbers {
  font-family: "Arial", "Tahoma", sans-serif;
  font-feature-settings: "lnum";
}

.card-me{
  background: #F1F2F4;
}

h1, h2, h3 {
  font-family: 'Cairo', sans-serif;
}


.btn-me {
    display: inline-block;
    font-weight:300;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.35rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
                border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  /* d  a  s  h  b  o  r  e  d */

  .card-hover {
    transition: transform 0.3s, box-shadow 0.3s;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.icon-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
}
.icon-circle i {
    color: #007bff;
}


  .btn-primary-me {
    color: #fff;
    background-color: #336192;
    border-color: #336192;
  }
  
  .btn-primary-me:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
  }
  .custom-bg {
    background-color: #344155;
  }

  .icon-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.05); /* خلفية شفافة داكنة خفيفة */
    border-radius: 50%;
}

.icon-circle i {
    color: #333; /* لون الأيقونة داكن */
}



.custom-card {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
}

.custom-card .card-body i {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 15px;
  border-radius: 50%;
}

.custom-card .card-body h3 {
  margin-top: 10px;
}

.icon-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.color-display-box {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 10px; /* زوايا منحنية */
  border: 2px solid rgba(0, 0, 0, 0.2); /* حدود بلون رمادي خفيف */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 
              0 2px 5px rgba(0, 0, 0, 0.05); /* ظل بسيط */
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; /* تأثير سلس */
  cursor: pointer; /* يشبه الزر */
}

/* تأثير عند التفاعل */
.color-display-box:hover {
  transform: scale(1.05); /* تكبير خفيف */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* ظل خفيف عند التفاعل */
}





/* ---------------------- */
html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}
footer {
  padding-top: 5px;
  padding-bottom: 5px;
}

/* بوكس الالوان */




/* ------------------------------- */





/* تنسيق الحالات */
/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .color-badge-icon {
    background-color: #059669; /* dark:bg-emerald-500 */
  }
}


/* ---------- الحالة 1 ------------*/

@keyframes custom-badge-1 {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

.animate-badge-1 {
  animation: custom-badge-1 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}



@keyframes animate-1-icon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25%);
  }
}

.animate-1-icon {
  animation: animate-1-icon 1s infinite;
}


.custom-badge-1 {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem; /* gap-x-1.5 (1.5 * 0.25rem) */
  padding: 0.375rem 0.75rem; /* py-1.5 px-3 */
  border-radius: 12px; /* rounded-full */
  font-size: 0.75rem; /* text-xs */
  font-weight: 500; /* font-medium */
}
.custom-badge-1-icon {
  display: inline-block;
  width: 0.375rem; /* size-1.5 (1.5 * 0.25rem) */
  height: 0.375rem; /* size-1.5 (1.5 * 0.25rem) */
  border-radius: 9999px; /* rounded-full */
}


.color-badge-1 {
  border: 1px solid #059669; /* border-emerald-600 */
  color: #059669; /* text-emerald-600 */
}

.color-badge-1-icon {
  background-color: #059669; /* bg-emerald-500 */
}

/* ----------------------------------------*/





/* ---------- الحالة 2 ------------*/
@keyframes custom-badge-2 {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

.animate-badge-2 {
  animation: custom-badge-2 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}



@keyframes animate-2-icon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25%);
  }
}

.animate-2-icon {
  animation: animate-2-icon 1s infinite;
}



.color-badge-2 {
  border: 1px solid rgb(148 163 184); /* border-gray-400 */
  color: rgb(148 163 184); /* text-gray-400 */
}

.color-badge-2-icon {
  background-color: rgb(148 163 184); /* bg-gray-400 */
}


.custom-badge-2 {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem; /* gap-x-1.5 (1.5 * 0.25rem) */
  padding: 0.375rem 0.75rem; /* py-1.5 px-3 */
  border-radius: 12px; /* rounded-full */
  font-size: 0.75rem; /* text-xs */
  font-weight: 500; /* font-medium */
}
.custom-badge-2-icon {
  display: inline-block;
  width: 0.375rem; /* size-1.5 (1.5 * 0.25rem) */
  height: 0.375rem; /* size-1.5 (1.5 * 0.25rem) */
  border-radius: 9999px; /* rounded-full */
}


.custom-badge-3 {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem; /* gap-x-1.5 (1.5 * 0.25rem) */
  padding: 0.375rem 0.75rem; /* py-1.5 px-3 */
  border-radius: 12px; /* rounded-full */
  font-size: 0.75rem; /* text-xs */
  font-weight: 500; /* font-medium */
}




/* ---------- الحالة 3 ------------*/

@keyframes animate-3-icon {
  to {
    transform: rotate(360deg);
  }
}

.animate-3-icon {
  animation: animate-3-icon 0.75s linear infinite;
}


.color-badge-3 {
  border: 1px solid rgb(251 146 60); /* border-orange-500 */
  color: rgb(251 146 60); /* text-orange-500 */
}

.color-badge-3-icon {
  background-color: rgb(251 146 60); /* bg-orange-500 */
}

.custom-badge-3-icon {
  display: inline-block;
  width: 1rem; /* حجم العنصر */
  height: 1rem; /* حجم العنصر */
  vertical-align: text-bottom;
  border: 0.20em solid currentColor;
  border-right-color: transparent; /* لون حدود الدائرة */
  border-radius: 50%;
  background-color: transparent; /* لجعل الخلفية شفافة */
}








/* ---------- الحالة 4 ------------*/

@keyframes custom-badge-4 {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

.animate-badge-4 {
  animation: custom-badge-4 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}



@keyframes animate-4-icon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25%);
  }
}

.animate-4-icon {
  animation: animate-4-icon 1s infinite;
}


.custom-badge-4 {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem; /* gap-x-1.5 (1.5 * 0.25rem) */
  padding: 0.375rem 0.75rem; /* py-1.5 px-3 */
  border-radius: 12px; /* rounded-full */
  font-size: 0.75rem; /* text-xs */
  font-weight: 500; /* font-medium */
}
.custom-badge-4-icon {
  display: inline-block;
  width: 0.375rem; /* size-1.5 (1.5 * 0.25rem) */
  height: 0.375rem; /* size-1.5 (1.5 * 0.25rem) */
  border-radius: 9999px; /* rounded-full */
}


.color-badge-4 {
  border: 1px solid rgb(46, 111, 195); /* border-emerald-600 */
  color: rgb(46, 111, 195); /* text-emerald-600 */
}

.color-badge-4-icon {
  background-color: rgb(46, 111, 195) /* bg-emerald-500 */
}

/* ----------------------------------------*/


/* ---------- الحالة 5 ------------*/

@keyframes custom-badge-4 {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

.animate-badge-5 {
  animation: custom-badge-5 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}



@keyframes animate-5-icon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25%);
  }
}

.animate-5-icon {
  animation: animate-5-icon 1s infinite;
}


.custom-badge-5 {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem; /* gap-x-1.5 (1.5 * 0.25rem) */
  padding: 0.375rem 0.75rem; /* py-1.5 px-3 */
  border-radius: 12px; /* rounded-full */
  font-size: 0.75rem; /* text-xs */
  font-weight: 500; /* font-medium */
}
.custom-badge-5-icon {
  display: inline-block;
  width: 0.375rem; /* size-1.5 (1.5 * 0.25rem) */
  height: 0.375rem; /* size-1.5 (1.5 * 0.25rem) */
  border-radius: 9999px; /* rounded-full */
}


.color-badge-5 {
  border: 1px solid rgb(209, 46, 89); /* border-emerald-600 */
  color: rgb(209, 46, 89); /* text-emerald-600 */
}

.color-badge-5-icon {
  background-color: rgb(209, 46, 89); /* bg-emerald-500 */
}

/* ----------------------------------------*/


 
/* ---------- الحالة 6 ------------*/
@keyframes custom-badge-6 {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

.animate-badge-6 {
  animation: custom-badge-6 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}



@keyframes animate-6-icon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25%);
  }
}

.animate-6-icon {
  animation: animate-7-icon 1s infinite;
}


.custom-badge-6 {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem; /* gap-x-1.5 (1.5 * 0.25rem) */
  padding: 0.375rem 0.75rem; /* py-1.5 px-3 */
  border-radius: 12px; /* rounded-full */
  font-size: 0.75rem; /* text-xs */
  font-weight: 500; /* font-medium */
}
.custom-badge-6-icon {
  display: inline-block;
  width: 0.375rem; /* size-1.5 (1.5 * 0.25rem) */
  height: 0.375rem; /* size-1.5 (1.5 * 0.25rem) */
  border-radius: 9999px; /* rounded-full */
}


.color-badge-6 {
  border: 1px solid rgb(244 63 94); /* border-emerald-600 */
  color: rgb(244 63 94); /* text-emerald-600 */
}

.color-badge-6-icon {
  background-color: rgb(244 63 94); /* bg-emerald-500 */
}

/* ----------------------------------------*/




/* ---------- الحالة 7 ------------*/

@keyframes custom-badge-7 {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

.animate-badge-7 {
  animation: custom-badge-7 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}



@keyframes animate-7-icon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25%);
  }
}

.animate-7-icon {
  animation: animate-7-icon 1s infinite;
}


.custom-badge-7 {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem; /* gap-x-1.5 (1.5 * 0.25rem) */
  padding: 0.375rem 0.75rem; /* py-1.5 px-3 */
  border-radius: 12px; /* rounded-full */
  font-size: 0.75rem; /* text-xs */
  font-weight: 500; /* font-medium */
}
.custom-badge-7-icon {
  display: inline-block;
  width: 0.375rem; /* size-1.5 (1.5 * 0.25rem) */
  height: 0.375rem; /* size-1.5 (1.5 * 0.25rem) */
  border-radius: 9999px; /* rounded-full */
}


.color-badge-7 {
  border: 1px solid rgb(7 89 133); /* border-emerald-600 */
  color: rgb(7 89 133);; /* text-emerald-600 */
}

.color-badge-7-icon {
  background-color: rgb(7 89 133); /* bg-emerald-500 */
}

/* ----------------------------------------*/


/* ---------- الحالة 8 ------------*/

@keyframes custom-badge-8 {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

.animate-badge- {
  animation: custom-badge-8 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}



@keyframes animate-8-icon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25%);
  }
}

.animate-7-icon {
  animation: animate-8-icon 1s infinite;
}


.custom-badge-8 {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem; /* gap-x-1.5 (1.5 * 0.25rem) */
  padding: 0.375rem 0.75rem; /* py-1.5 px-3 */
  border-radius: 12px; /* rounded-full */
  font-size: 0.75rem; /* text-xs */
  font-weight: 500; /* font-medium */
}
.custom-badge-8-icon {
  display: inline-block;
  width: 0.375rem; /* size-1.5 (1.5 * 0.25rem) */
  height: 0.375rem; /* size-1.5 (1.5 * 0.25rem) */
  border-radius: 9999px; /* rounded-full */
}


.color-badge-8 {
  border: 1px solid rgb(26, 203, 171); /* border-emerald-600 */
  color: rgb(15, 161, 135);; /* text-emerald-600 */
}

.color-badge-8-icon {
  background-color: rgb(26, 203, 171); /* bg-emerald-500 */
}

/* ----------------------------------------*/

/* ---------- الحالة 9 ------------*/

@keyframes custom-badge-9{
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

.animate-badge-9{
  animation: custom-badge-8 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}



@keyframes animate-9-icon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25%);
  }
}

.animate-9-icon {
  animation: animate-9-icon 1s infinite;
}


.custom-badge-9 {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem; /* gap-x-1.5 (1.5 * 0.25rem) */
  padding: 0.375rem 0.75rem; /* py-1.5 px-3 */
  border-radius: 12px; /* rounded-full */
  font-size: 0.75rem; /* text-xs */
  font-weight: 500; /* font-medium */
}
.custom-badge-9-icon {
  display: inline-block;
  width: 0.375rem; /* size-1.5 (1.5 * 0.25rem) */
  height: 0.375rem; /* size-1.5 (1.5 * 0.25rem) */
  border-radius: 9999px; /* rounded-full */
}


.color-badge-9 {
  border: 1px solid rgb(26, 203, 171); /* border-emerald-600 */
  color: rgb(15, 161, 135);; /* text-emerald-600 */
}

.color-badge-9-icon {
  background-color: rgb(26, 203, 171); /* bg-emerald-500 */
}

/* ----------------------------------------*/



/* ---------- الحالة 10 ------------*/

@keyframes custom-badge-10 {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

.animate-badge-10 {
  animation: custom-badge-10 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}



@keyframes animate-10-icon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25%);
  }
}

.animate-10-icon {
  animation: animate-10-icon 1s infinite;
}


.custom-badge-10 {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem; /* gap-x-1.5 (1.5 * 0.25rem) */
  padding: 0.375rem 0.75rem; /* py-1.5 px-3 */
  border-radius: 12px; /* rounded-full */
  font-size: 0.75rem; /* text-xs */
  font-weight: 500; /* font-medium */
}
.custom-badge-10-icon {
  display: inline-block;
  width: 0.375rem; /* size-1.5 (1.5 * 0.25rem) */
  height: 0.375rem; /* size-1.5 (1.5 * 0.25rem) */
  border-radius: 9999px; /* rounded-full */
}


.color-badge-10 {
  border: 1px solid rgb(26, 106, 203); /* border-emerald-600 */
  color: rgb(26, 106, 203);; /* text-emerald-600 */
}

.color-badge-10-icon {
  background-color: rgb(26, 106, 203); /* bg-emerald-500 */
}

/* ----------------------------------------*/

.custom-select-container {
  position: relative;
  width: 100%;
}

.form-select {
  width: 100%;
  border: 1px solid #d1d5db; /* Tailwind border-gray-300 */
  border-radius: 0.375rem; /* Tailwind rounded-lg */
  background-color: white;
  cursor: pointer;
  padding: 0.5rem;
  height: auto;
  overflow-y: auto;
  max-height: 150px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-select:focus {
  border-color: #3b82f6; /* Tailwind blue-500 */
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5); /* Focus ring */
  outline: none;
}

.color-indicator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

/* 
.modal-body {
  max-height: 400px;
  overflow-y: auto;
}
 */



/* تكبير حجم الـSwitch */
.switch-lg {
  width: 60px;
  height: 34px;
}

.switch-lg:checked {
  background-color: #4caf50;
}

.switch-lg:before {
  height: 26px;
  width: 26px;
  transform: translateX(4px);
}
