/* Wrapper */
.interview-prep-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Search bar */
.interview-prep-section .search-input {
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 40px;
  box-sizing: border-box;
  margin-bottom: 30px;
  background-color: #fff;
}

.interview-prep-section .search-input:focus {
  outline: none;
  border-color: #333;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

/* Container for tiles */
#resultsContainer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Individual prep kit tile */
.prep-kit-tile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  background-color: #ffffff;
  transition: all 0.3s ease;
  gap: 20px;
}

.prep-kit-tile:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #ccc;
}

/* Center section - Role, Experience, Skills */
.tile-center {
  flex: 1;
  min-width: 0;
}

.tile-role {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  opacity:0.95;
}

.tile-experience {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  opacity:0.85;
}

.tile-experience strong {
  font-weight: 600;
  color: #333;
  opacity:0.85;
}

.tile-skills {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.4;
  opacity:0.85;
}

.tile-skills strong {
  font-weight: 600;
  color: #333;
  opacity:0.85;
}

/* Right section - Button */
.tile-right {
  flex-shrink: 0;
}

.prepare-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1px solid #333;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #333;
  background-color: #ffffff;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.prepare-btn:hover {
  background-color: #333;
  color: #ffffff;
}

.prepare-btn:active {
  transform: scale(0.98);
}

/* No results text */
.no-results {
  text-align: center;
  color: #999;
  padding: 40px 20px;
  font-size: 16px;
}

/* Responsive - Stack on mobile */
@media (max-width: 768px) {
  .prep-kit-tile {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
  }

  .tile-center {
    width: 100%;
  }

  .tile-right {
    width: 100%;
  }

  .prepare-btn {
    width: 100%;
    text-align: center;
  }
}