/* widget styles */
/* Mobile default: small phones */
/*
.checker-widget img {
  margin: none;
  padding: none;
}
.checker-search {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
}
.checker-header img {
  height: var(--navbar-icon-height);
}

.checker-suggestions {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
}*/
.checker-widget {
  width: 100%;
  margin: 2rem 0;
  font-family: var(--font-family);
  color: var(--text-color-primary);
}

.checker-search {
  background: var(--background-color);
  border: 1px solid #e5e7eb;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.checker-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.checker-header img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  flex-shrink: 0;
}

.checker-title h3 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.checker-title p {
  margin: 0;
  color: #6b7280;
  line-height: 1.5;
}

.checker-input {
  display: flex;
  gap: 0.75rem;
}

.checker-input input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid #dbeafe;
  border-radius: var(--border-radius);
  font-size: 1rem;
  outline: none;
  transition: 0.2s;
}

.checker-input input:focus {
  border-color: #2563eb;
}

.checker-input button {
  height: 48px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border: none;
  border-radius: var(--border-radius);
  background: #2563eb;
  color: var(--background-color);
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.checker-input button:hover {
  background: #1d4ed8;
}

.checker-result {
  min-height: 80px;
  margin-top: 1rem;
}

.checker-suggestions {
  margin-top: 1rem;
}

.checker-suggestions > p {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.suggestion-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.suggestion-list button {
  border: 2px solid #dbeafe;
  background: var(--background-color);
  color: #2563eb;
  border-radius: var(--border-radius);
  padding: 0.55rem 1rem;
  cursor: pointer;
  transition: 0.2s;
}

.suggestion-list button:hover {
  background: #eff6ff;
}

.checker-result {
  margin-top: 1rem;
  padding: 1rem 1.25rem;

  border-radius: 12px;

  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.checker-result.success {
  background: #f0fdf4;
  border: 1px solid #22c55e;
  border-left: 5px solid #16a34a;
}
.checker-result.fail {
  background: #fef2f2;
  border: 1px solid #ef4444;
  border-left: 5px solid #dc2626;
}
.checker-result p {
  margin: 0;
  line-height: 1.6;
}

.checker-result.success p:first-child {
  font-weight: 600;
  color: #166534;
}

.checker-result.fail p:first-child {
  font-weight: 600;
  color: #dc2626;
}

.checker-result p:last-child {
  color: #374151;
  font-size: 0.95rem;
}

/* Small tablets and large phones */
@media (min-width: 640px) { 
    
}

/* Tablets */
@media (min-width: 768px) { 
    .checker-search {
    padding: 2rem;
  }

  .checker-title h3 {
    font-size: 2rem;
  }

  .checker-header img {
    width: 64px;
    height: 64px;
  }

  .checker-input {
    flex-direction: row;
    align-items: stretch;
  }

  .checker-input input {
    flex: 1;
    height: 56px;
    font-size: 1.05rem;
  }

  .checker-input button {
    width: 160px;
    height: 56px;
    flex-shrink: 0;
  }

  .suggestion-list {
    gap: 0.75rem;
  }

  .suggestion-list button {
    padding: 0.65rem 1.25rem;
  }
}

/* Laptops and desktops */
@media (min-width: 1024px) { 
    
}

/* Large screens and desktops */
@media (min-width: 1280px) { 
    
}

/* Ultra large screens and desktops */
@media (min-width: 1536px) { 
    
}