#app {
    width: 50%;
    position: relative;
    margin: 0 auto;
}

.course-card {
  background-color: #dddddd;
  padding: 16px;
  border-radius: 20px;
  width: 100%;
  height: auto;
  color: black;
  font-family: 'Segoe UI', sans-serif;
  margin: 13px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* responsive için */
  gap: 10px;
}

.course-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1; /* yazı kısmı esnesin */
  min-width: 0; /* taşmayı önle */
  gap: 16px;
}

.course-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0; /* resim daralmasın */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-input {
    width: 100%;
    padding: 10px;
    border-radius: 999px;
    border: 2px solid #dddddd;
    background-color: #dddddd;
    color: black;
    margin-bottom: 20px;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mini-btn {
  background-color: #eeeeee;
  border-radius: 999px;
  padding: 5px 10px;
  cursor: pointer;
  white-space: nowrap;
}
