/* ========== Card Layout ========== */
.repo-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  margin-bottom: 24px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-family: "Segoe UI", Tahoma, sans-serif;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.repo-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.repo-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.repo-icon img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.repo-title {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
}

/* ========== Card Content ========== */
.repo-content {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.repo-thumbnail img {
  width: 80px;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.repo-description {
  flex: 1;
}

.repo-description p {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.repo-meta div {
  font-size: 13px;
  color: #666;
  margin-bottom: 4px;
}

/* ========== Footer / Actions ========== */
.repo-footer {
  border-top: 1px solid #eee;
  padding-top: 10px;
  font-size: 13px;
  text-align: right;
}

.repo-actions a {
  display: inline-block;
  padding: 6px 12px;
  background: #0078d7;
  color: #fff !important;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s ease;
  margin-right: 8px;
}

.repo-actions a:hover {
  background: #005fa3;
}

.repo-forms {
  margin-top: 6px;
  font-size: 12px;
  color: #666;
}

/* ========== Toolbar Styles ========== */
.repo-toolbar {
  border: 1px solid #ddd;
  background: #f9f9f9;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
}

.repo-toolbar-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}

.repo-toolbar .top-row {
  align-items: center;
  margin-bottom: 12px;
}

.repo-actions {
  display: flex;
  gap: 10px;
}

.repo-search {
  margin-left: auto;
}

.repo-filters,
.repo-sort {
  margin-right: 30px;
}

.repo-filters label,
.repo-sort label {
  font-weight: 600;
  font-size: 13px;
  display: block;
  margin-bottom: 4px;
}

.repo-toolbar select,
.repo-toolbar input[type="text"] {
  padding: 6px;
  font-size: 13px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 4px;
}

.repo-toolbar input[type="submit"] {
  padding: 6px 10px;
  font-size: 14px;
  background-color: #0078d7;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.repo-toolbar input[type="submit"]:hover {
  background-color: #005fa3;
}

.repo-paging {
  font-size: 13px;
  text-align: right;
  margin-left: auto;
}

.repo-paging a {
  text-decoration: none;
  color: #0078d7;
  font-weight: 600;
  margin: 0 4px;
}

.repo-paging a:hover {
  text-decoration: underline;
}

/* ========== Responsive ==========*
