/* Search section - drugi red */
.search-section {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-section .search-wrap {
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: center;
}

.search-section .search-wrap input {
  width: 100%;
  max-width: 500px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #0c0f14;
  color: var(--text);
  outline: none;
  box-sizing: border-box;
  font-size: 16px;
}

.search-section .search-wrap input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(77, 182, 255, 0.1);
}

/* Mobile responsive for course.html header */
@media (max-width: 768px) {
  .search-section {
    padding: 1rem;
  }
  
  .search-section .search-wrap input {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  /* Course header responsive */
  .site-header {
    flex-direction: column;
    align-items: stretch !important;
    gap: 1rem;
    padding: 1rem;
    position: relative;
  }
  
  /* Login kontrole na vrhu, desno poravnate */
  .site-header .header-controls {
    order: -1;
    align-self: flex-end;
    margin-bottom: 0.5rem;
  }
  
  /* Ime kursa centrisan ispod */
  .site-header > div:first-child {
    justify-content: center;
    text-align: center;
    order: 1;
  }
  
  .site-header .back {
    position: absolute;
    left: 0;
    top: 1rem;
  }
  
  .site-header h1 {
    font-size: 1.5rem;
    margin: 0;
  }
  
  #courseIconWrap {
    margin-left: 8px !important;
  }
  
  /* Index header responsive */
  .site-header h1:only-child {
    text-align: center;
    margin: 0;
  }
}
