/* Keep only unique styles for asset register page here. */
.mobile-card {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.mobile-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.mobile-card-id {
  font-weight: 600;
  color: #374151;
}

.mobile-card-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.mobile-card-description {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.mobile-card-frameworks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.header-row {
  width: 100%;
}

@media (max-width: 767px) {
  .filters-row {
    gap: 0.5rem;
  }
  .filter-pills {
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .mobile-filter-dropdowns {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    align-items: center;
  }

  .header-row {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
  }
  .header-row .flex-wrap {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  .search-bar {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .filters-row {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .filter-pills {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
}


/* Modal styles */
.modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}

/* Toast notification styles */
.toast {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  margin-bottom: 1rem;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.toast-description {
  font-size: 0.875rem;
  color: #6b7280;
}