/* src/styles/artistGallery.css */

/* Use your global variables */
:root {
  --brand-gold: #b08a48;
}

/* --- Search Bar Gap Fix --- */
/* We stop using input-group for the button so we can add a gap */
.gallery-search-row {
  display: flex;
  gap: 0.5rem; /* This creates the space you circled */
  align-items: center;
}

.gallery-search-input {
  border-color: #dee2e6;
  border-radius: 0.375rem; /* Standard Bootstrap radius */
}

.gallery-search-input:focus {
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 0.25rem rgba(176, 138, 72, 0.25);
}

/* --- Folder Cards (New Feature) --- */
.folder-card {
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  border-radius: 0.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
}

.folder-card:hover {
  background-color: #fff;
  transform: translateY(-2px);
  border-color: var(--brand-gold);
  box-shadow: 0 4px 12px rgba(176, 138, 72, 0.15);
}

.folder-icon {
  font-size: 2rem;
  color: var(--brand-gold);
  opacity: 0.8;
}

.folder-name {
  font-weight: 600;
  color: #212529;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.folder-count {
  font-size: 0.75rem;
  color: #6c757d;
}

/* --- Breadcrumbs --- */
.gallery-breadcrumbs {
  font-size: 0.9rem;
  color: #6c757d;
  display: flex;
  align-items: center;
}

.breadcrumb-link {
  color: var(--brand-gold);
  text-decoration: none;
  font-weight: 500;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.breadcrumb-link:hover {
  text-decoration: underline;
}

.breadcrumb-sep {
  margin: 0 0.5rem;
  opacity: 0.5;
}

/* --- Upload Status --- */
#uploadStatus {
  color: var(--brand-gold);
  font-weight: 600;
  font-size: 0.85rem;
  min-height: 1.2em; /* Prevents jumping when empty */
}