/* dating.css - Dating Service Cosmic Theme Stylesheet */

.dating-main {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 90px;
  min-height: calc(100vh - 250px);
}

.dating-screen {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dating-screen.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Spinner */
.spinner-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-left-color: #8a2be2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Auth Card */
.auth-card {
  padding: 40px 24px;
  text-align: center;
  margin-top: 40px;
}

.auth-icon {
  font-size: 4rem;
  margin-bottom: 24px;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 15px rgba(138, 43, 226, 0.6)); }
}

.auth-card h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff, #a0a0c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.auth-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 32px;
}

.auth-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn-auth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-auth--yandex {
  background: #ffcc00;
  color: #000;
}

.btn-auth--yandex:hover {
  background: #ffe066;
  transform: translateY(-2px);
}

.btn-auth--google {
  background: #ffffff;
  color: #000000;
}

.btn-auth--google:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

.dev-login-box {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px dashed rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dev-badge {
  font-size: 0.75rem;
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  padding: 4px 8px;
  border-radius: 12px;
  align-self: center;
  font-weight: 700;
  letter-spacing: 1px;
}

.dev-login-box input {
  padding: 10px 16px;
  border-radius: 20px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  outline: none;
}

/* Card Stack */
.card-stack-container {
  position: relative;
  width: 100%;
  height: 480px;
  margin-top: 20px;
}

.card-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.swipe-card {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background: #0f0f2e;
  border: 1px solid rgba(255,255,255,0.1);
  transform-origin: 50% 99%;
  cursor: grab;
  display: flex;
  flex-direction: column;
  user-select: none;
}

.swipe-card:active {
  cursor: grabbing;
}

.card-photo-wrapper {
  position: relative;
  flex: 1;
  background: #050510;
  overflow: hidden;
}

.card-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.card-overlay-badge {
  position: absolute;
  top: 30px;
  border: 4px solid;
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0;
  transform: rotate(-15deg);
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.1s ease;
}

.card-overlay-badge--like {
  right: 30px;
  color: #22c55e;
  border-color: #22c55e;
  transform: rotate(15deg);
}

.card-overlay-badge--pass {
  left: 30px;
  color: #ef4444;
  border-color: #ef4444;
}

.card-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(transparent, rgba(10, 10, 26, 0.95));
  pointer-events: none;
}

.card-info {
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 100%;
  padding: 0 24px;
  pointer-events: none;
  z-index: 5;
}

.card-info__name {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}

.card-info__city {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.card-compatibility-summary {
  background: rgba(10, 10, 26, 0.95);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 6;
}

.compat-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.compat-badge--excellent {
  background: rgba(138, 43, 226, 0.2);
  color: #c084fc;
  border: 1px solid rgba(138, 43, 226, 0.4);
}

.compat-badge--good {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.compat-badge--low {
  background: rgba(156, 163, 175, 0.15);
  color: #9ca3af;
}

.compat-metrics {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
}

.compat-metrics span {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-secondary);
}

/* Card Control Actions */
.card-actions-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.btn-action {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.btn-action:hover {
  transform: scale(1.1);
}

.btn-action--pass {
  color: #ef4444;
}

.btn-action--pass:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
}

.btn-action--like {
  color: #22c55e;
  width: 70px;
  height: 70px;
  font-size: 1.8rem;
}

.btn-action--like:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
}

.btn-action--details {
  color: #3b82f6;
}

.btn-action--details:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

.btn-action--next {
  color: #a78bfa;
}

.btn-action--next:hover {
  background: rgba(167, 139, 250, 0.1);
  border-color: rgba(167, 139, 250, 0.3);
}

/* Dynamic Filters Bar */
.feed-filters {
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.filter-btn {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn.active {
  background: #8a2be2;
  border-color: #8a2be2;
  color: #fff;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
}

/* Chat Layout */
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.chat-back-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.chat-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  margin-left: 12px;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.chat-partner-name {
  font-weight: 700;
  color: #fff;
}

.chat-partner-status {
  font-size: 0.75rem;
  color: #ef4444;
}

.chat-partner-status.online {
  color: #22c55e;
}

.chat-messages-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 380px;
  overflow-y: auto;
  padding: 8px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(0,0,0,0.2);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(5, 5, 20, 0.3);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.05);
  height: 400px;
}

.message-bubble {
  max-width: 75%;
  padding: 12px 16px;
  border-radius: 20px;
  line-height: 1.4;
  font-size: 0.95rem;
  position: relative;
  word-break: break-word;
}

.message-bubble--sent {
  align-self: flex-end;
  background: linear-gradient(135deg, #8a2be2, #6b21a8);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.message-bubble--received {
  align-self: flex-start;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(255,255,255,0.06);
}

.message-time {
  font-size: 0.7rem;
  opacity: 0.6;
  margin-top: 4px;
  text-align: right;
  display: block;
}

.chat-input-bar {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 30px;
  align-items: center;
}

.chat-input-bar input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 8px 12px;
  font-size: 0.95rem;
}

.chat-input-bar button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #8a2be2;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.chat-input-bar button:hover {
  transform: scale(1.05);
}

/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 500px;
  height: 64px;
  border-radius: 32px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 16px;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-item {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-secondary);
  cursor: pointer;
  gap: 4px;
  transition: all 0.2s ease;
  position: relative;
}

.nav-icon {
  font-size: 1.3rem;
}

.nav-label {
  font-size: 0.75rem;
  font-weight: 600;
}

.nav-item.active {
  color: #a78bfa;
}

.nav-item.active .nav-icon {
  transform: translateY(-2px) scale(1.1);
}

.unread-badge {
  position: absolute;
  top: -4px;
  right: 4px;
  background: #ef4444;
  color: #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Conversations List */
.chats-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
  border: 1px solid rgba(255,255,255,0.03);
}

.chat-row:hover {
  background: rgba(255,255,255,0.05);
}

.chat-row__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(138, 43, 226, 0.3);
}

.chat-row__details {
  flex: 1;
  min-width: 0;
}

.chat-row__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}

.chat-row__name {
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
}

.chat-row__time {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.chat-row__message-preview {
  font-size: 0.85rem;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-row__unread-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a78bfa;
}

/* Favorites Grid */
.favorites-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.favorite-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.favorite-card:hover {
  transform: translateY(-4px);
}

.favorite-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.favorite-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  background: linear-gradient(transparent, rgba(10, 10, 26, 0.95));
}

.favorite-card__name {
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
}

.favorite-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

.favorite-card__city {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Photo Upload Grid */
.photo-upload-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.photo-upload-slot {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: rgba(0,0,0,0.3);
  border: 1px dashed rgba(255,255,255,0.15);
}

.photo-upload-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-slot-delete {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.8);
  color: #fff;
  border: none;
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-slot-primary {
  position: absolute;
  bottom: 4px;
  left: 4px;
  background: rgba(138, 43, 226, 0.8);
  color: #fff;
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 8px;
  font-weight: 700;
}

/* === Cosmic Premium Styling Upgrades === */

/* Custom styled selects */
.cosmic-form select,
.lang-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  padding: 12px 36px 12px 16px !important;
  font-size: 0.95rem !important;
  outline: none;
  cursor: pointer;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 16px !important;
  transition: all 0.3s ease !important;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.05);
}

.cosmic-form select:focus,
.lang-select:focus {
  border-color: #a78bfa !important;
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.25) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

/* Premium Inputs */
.cosmic-form input[type="text"],
.cosmic-form input[type="date"],
.cosmic-form input[type="time"] {
  width: 100%;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  color: #fff !important;
  font-size: 0.95rem !important;
  transition: all 0.3s ease !important;
  outline: none !important;
}

.cosmic-form input[type="text"]:focus,
.cosmic-form input[type="date"]:focus,
.cosmic-form input[type="time"]:focus {
  border-color: #a78bfa !important;
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.25) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

/* Floating animation & Centered Layout for Empty States */
.feed-empty-state,
.empty-state {
  display: flex;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 40px 24px !important;
  background: rgba(15, 15, 35, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 24px !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 400px;
  width: 90% !important;
  margin: 40px auto !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
}

.empty-icon {
  font-size: 3.5rem !important;
  margin-bottom: 16px !important;
  display: inline-block !important;
  animation: cosmic-float 3s ease-in-out infinite !important;
}

@keyframes cosmic-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.feed-empty-state h3,
.empty-state h3 {
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 12px !important;
  background: linear-gradient(135deg, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feed-empty-state p,
.empty-state p {
  font-size: 0.9rem !important;
  color: #94a3b8 !important;
  line-height: 1.6 !important;
  margin-bottom: 24px !important;
}

/* Glowing Cosmic Buttons */
.btn-cosmic {
  background: linear-gradient(135deg, #8a2be2, #ec4899) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 30px !important;
  padding: 14px 28px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 20px rgba(138, 43, 226, 0.4) !important;
  transition: all 0.3s ease !important;
}

.btn-cosmic:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 25px rgba(138, 43, 226, 0.6), 0 0 15px rgba(236, 72, 153, 0.4) !important;
}

/* === Cosmic Profile Screen Premium Styles === */
#screen-profile {
  padding: 16px;
}

.profile-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(15, 15, 35, 0.65) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
  margin-top: 10px;
}

.profile-header-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
  text-align: center;
}

.profile-avatar-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #8a2be2, #ec4899);
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
  margin-bottom: 16px;
}

.profile-main-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0f0f2e;
}

.profile-header-main h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 4px 0;
}

.profile-header-main p {
  color: #a78bfa;
  font-size: 0.95rem;
  margin: 0;
}

.profile-details-section {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 24px;
}

.details-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.details-row:last-child {
  border-bottom: none;
}

.detail-label {
  color: #94a3b8;
  font-size: 0.9rem;
}

.detail-val {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: right;
}

.manage-photos-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.photo-upload-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

/* Uploaded photo item */
.profile-photo-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.profile-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-photo-item .btn-photo-delete {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(239, 68, 68, 0.85);
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}

.profile-photo-item .btn-photo-delete:hover {
  background: rgb(239, 68, 68);
}

.profile-photo-item .primary-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(138, 43, 226, 0.85);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  text-align: center;
  padding: 2px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.photo-upload-area {
  border: 2px dashed rgba(138, 43, 226, 0.3);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(138, 43, 226, 0.03);
}

.photo-upload-area:hover {
  border-color: rgba(138, 43, 226, 0.8);
  background: rgba(138, 43, 226, 0.08);
}

.photo-upload-area span {
  font-size: 0.9rem;
  color: #a78bfa;
  font-weight: 600;
}

/* Language Filter Dropdown Alignment in Feed */
.filter-row select.lang-select {
  width: auto;
  min-width: 130px;
  padding: 8px 30px 8px 12px !important;
  font-size: 0.85rem !important;
  border-radius: 20px !important;
  background-position: right 10px center !important;
  background-size: 12px !important;
  height: 34px !important;
  box-sizing: border-box;
}
