html {
  font-size: 14px;
  font-family: 'Noto Kufi Arabic', sans-serif;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  font-family: 'Noto Kufi Arabic', sans-serif;
}

/* Mobile-specific styling for resume contact list */
@media (max-width: 767.98px) {
  .resume-contact-list {
    flex-direction: column !important;
  }
  
  .resume-contact-list li {
    margin-bottom: 0.5rem;
  }
  
  .resume-contact-list li:last-child {
    margin-bottom: 0;
  }
  
  /* Mobile navigation max-width */
  .main-nav {
    max-width: 100vw !important;
  }
}

/* Comment styling enhancements for RTL */
.blog-comment-area .comment-item-box {
  background: var(--bg-card, #fff);
  box-shadow: var(--shadow-sm, 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075));
}

.blog-comment-area .comment-item-box:hover {
  box-shadow: var(--shadow-md, 0 0.5rem 1rem rgba(0, 0, 0, 0.15));
}

.blog-comment-area .comment-author img {
  border: 2px solid var(--border-color, #e9ecef);
  transition: all 0.3s ease;
}

.blog-comment-area .comment-author img:hover {
  border-color: var(--primary-color, #007bff);
  transform: scale(1.05);
}

.blog-comment-area .comment-body .name {
  color: var(--text-primary, #333);
  font-weight: 600;
}

.blog-comment-area .comment-body .time {
  color: var(--text-muted, #6c757d);
  font-size: 0.875rem;
}


/* Post navigation LTR direction */
.post-nav {
  direction: ltr;
}

[data-theme="dark"] .blog-comment-area .comment-body .name {
  color: var(--text-primary-dark, #e2e8f0);
}

[data-theme="dark"] .blog-comment-area .comment-body .time {
  color: var(--text-muted-dark, #a0aec0);
}
