/* Global base styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  transition: background-color .3s, color .3s;
}

#mainNav {
  border-bottom: 1px solid;
  transition: background-color .3s, border-color .3s;
}

.blog-card {
  border: 1px solid;
  border-radius: 6px;
  /* padding: 1.5rem; */
  transition: background-color .3s, border-color .3s, color .3s;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.15);
}

.blog-title a {
  text-decoration: none;
  transition: color .3s;
}

.blog-title a:hover {
  text-decoration: underline;
}

footer {
  border-top: 1px solid;
  transition: background-color .3s, border-color .3s, color .3s;
}

/* Form inputs (GitHub style) */
.form-control {
  border-radius: 6px;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.95rem;
  transition: background-color .3s, border-color .3s, color .3s;
}

/* Code block styling */
/* pre {
  background: #f6f8fa;
  color: #212529;
  border-radius: 6px;
  padding: 1em;
  font-size: 1em;
  overflow-x: auto;
  margin-bottom: 1.2em;
  font-family: 'Fira Mono', 'Consolas', 'Monaco', 'monospace';
} */

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.15);
} */

.github-comment {
  display: flex;
  align-items: flex-start;
  background: #fff;
  /* border removed */
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px 0 rgba(60,72,88,0.07);
  transition: box-shadow 0.2s;
}
.github-comment:hover {
  box-shadow: 0 4px 16px 0 rgba(60,72,88,0.13);
}
.github-comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0e7ef 0%, #f6f8fa 100%);
  margin-right: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #6b7280;
  font-size: 18px;
  box-shadow: 0 1px 4px 0 rgba(60,72,88,0.08);
}
.github-comment-body {
  flex: 1;
  min-width: 0;
}
.github-comment-header {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.github-comment-username {
  font-weight: 600;
  color: #2563eb;
  margin-right: 8px;
  font-size: 15px;
}
.github-comment-date {
  color: #94a3b8;
  font-size: 13px;
}

.github-reply-btn {
  color: #2563eb;
  background: #f1f5f9;
  border: none;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 13px;
  cursor: pointer;
  font-weight: 500;
  margin-top: 2px;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 1px 2px 0 rgba(60,72,88,0.04);
}
.github-reply-btn:hover {
  background: #2563eb;
  color: #fff;
}

iframe {
  width: 100%;
  height: 400px; /* adjust depending on your content */
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin: 20px 0;
  padding: 0;
  display: block;
}

.tagify{    
  width: 100%;
}

.tags-look .tagify__dropdown__item{
  display: inline-block;
  border-radius: 3px;
  padding: .3em .5em;
  border: 1px solid #CCC;
  background: #F3F3F3;
  margin: .2em;
  font-size: .85em;
  color: black;
  transition: 0s;
}

.tags-look .tagify__dropdown__item--active{
  color: black;
}

.tags-look .tagify__dropdown__item:hover{
  background: lightyellow;
  border-color: gold;
}