/* =============================================================================
   Marriage Muhurtham Page Styles – MVP-1.2
   frontend/static/css/marriage_muhurtham/marriage_muhurtham_style.css
   
   Enhancements:
   - Desktop 3-month grid layout
   - Loading UX (spinner, progress bar, rotating messages, skeleton)
   - Responsive multi-month cards
   - Morning preference badge and show-all toggle
   ============================================================================= */

/* Container & Layout */
.mm-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}

/* ---- Header Card ---- */
.mm-header {
  background: linear-gradient(135deg, #f8f4fc 0%, #f0e8f6 100%);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 14px;
  border: 1px solid rgba(123,44,191,0.12);
  box-shadow: 0 2px 12px rgba(123,44,191,0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mm-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.mm-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #4b2c5e;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mm-subtitle {
  font-size: 0.62rem;
  color: #666;
  margin: 0;
  text-align: left;
}

/* ---- Location Row (between header and month nav) ---- */
.mm-location-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 4px;
}

.mm-city-inline {
  font-size: 0.58rem;
  color: #7b2cbf;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-weight: 500;
}

.mm-city-inline .emoji {
  font-size: 0.6rem;
}

/* ---- Month Navigator ---- */
.mm-month-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 14px 0;
  padding: 12px 16px;
  background: linear-gradient(135deg, #faf7fc 0%, #f5f0fa 100%);
  border-top: 1px solid #e8e0f0;
  border-bottom: 1px solid #e8e0f0;
  border-radius: 8px;
}

.mm-nav-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #e8e0f0;
  border-radius: 50%;
  background: #fff;
  color: #7b2cbf;
  font-size: 2.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  box-shadow: 0 2px 6px rgba(123,44,191,0.08);
}

.mm-nav-btn:hover {
  background: #f8f4fc;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(123,44,191,0.12);
}

.mm-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.mm-month-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #4b2c5e;
  min-width: 180px;
  text-align: center;
}

/* ---- View Toggle Tabs ---- */
.mm-view-tabs {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  margin-bottom: 14px;
}

.mm-tab {
  padding: 6px 14px;
  font-size: 0.68rem;
  font-weight: 500;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  color: #888;
  cursor: pointer;
  transition: all 0.15s ease;
}

.mm-tab:hover {
  color: #7b2cbf;
  border-bottom-color: #d0c0e0;
}

.mm-tab.active {
  background: transparent;
  color: #7b2cbf;
  border-bottom: 2px solid #7b2cbf;
  font-weight: 600;
  box-shadow: none;
}

/* =============================================================================
   MULTI-MONTH GRID (Desktop: 3 cols, Tablet: 2 cols, Mobile: 1 col)
   ============================================================================= */

.mm-months-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .mm-months-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .mm-months-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---- Month Card ---- */
.mm-month-card {
  background: #fff;
  border: 1px solid #f0e8f5;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.mm-month-card-header {
  margin-bottom: 10px;
  text-align: center;
}

.mm-month-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #4b2c5e;
  margin: 0;
}

/* ---- Calendar Grid (7 columns) ---- */
.mm-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.mm-weekday-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 4px;
}

.mm-weekday-header span {
  font-size: 0.58rem;
  font-weight: 700;
  text-align: center;
  color: #7b2cbf;
  padding: 4px 2px;
  background: #f8f4fc;
  border-radius: 4px;
}

.mm-day {
  aspect-ratio: 1;
  min-height: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #f0e8f5;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #333;
  cursor: default;
  position: relative;
  transition: all 0.15s ease;
}

.mm-day.empty {
  background: transparent;
  border: none;
}

.mm-day.shubh {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border-color: #a7f3d0;
  cursor: pointer;
}

.mm-day.shubh:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.mm-day.shubh:focus {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

.mm-day.today {
  border: 2px solid #8b5cf6;
}

.mm-shubh-icon {
  position: absolute;
  top: 1px;
  right: 2px;
  font-size: 0.45rem;
}

.mm-day-num {
  font-size: 0.75rem;
  line-height: 1.2;
}

/* =============================================================================
   LOADING UX - Overlay with Spinner, Progress Bar, Rotating Messages
   ============================================================================= */

.mm-loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.mm-loading-overlay.show {
  display: flex;
  opacity: 1;
}

.mm-loading-content {
  text-align: center;
  max-width: 300px;
}

.mm-loading-spinner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 90deg,
    #8b5cf6 90deg 180deg,
    #a78bfa 180deg 270deg,
    #c4b5fd 270deg 360deg
  );
  animation: mm-spin 1s linear infinite;
  margin: 0 auto 20px;
  position: relative;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.mm-loading-spinner::before {
  content: '';
  position: absolute;
  inset: 6px;
  background: #fff;
  border-radius: 50%;
}

.mm-loading-spinner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: mm-pulse-glow 1.5s ease-in-out infinite;
}

@keyframes mm-pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }
  50% { box-shadow: 0 0 35px rgba(139, 92, 246, 0.5); }
}

.mm-loading-message {
  font-size: 0.88rem;
  color: #4b2c5e;
  font-weight: 600;
  margin-bottom: 20px;
  min-height: 24px;
  animation: mm-fade-text 0.3s ease;
}

@keyframes mm-fade-text {
  from { opacity: 0.5; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.mm-loading-progress-bar {
  width: 220px;
  height: 6px;
  background: #e8e0f0;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

.mm-loading-progress-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.4) 50%,
    transparent 100%
  );
  animation: mm-shimmer 1.5s infinite;
}

@keyframes mm-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.mm-loading-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #8b5cf6, #a78bfa, #7c3aed);
  background-size: 200% 100%;
  border-radius: 999px;
  transition: width 0.15s ease-out;
  animation: mm-gradient-shift 2s ease infinite;
  position: relative;
}

@keyframes mm-gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes mm-spin {
  to { transform: rotate(360deg); }
}

/* ---- Skeleton Loading ---- */
.mm-skeleton-card {
  animation: mm-pulse 1.5s ease-in-out infinite;
}

.mm-skeleton-header {
  height: 20px;
  background: #e8e0f0;
  border-radius: 6px;
  width: 60%;
  margin: 0 auto 10px;
}

.mm-skeleton-weekday {
  height: 18px;
  background: #e8e0f0;
  border-radius: 4px;
}

.mm-skeleton-day {
  background: #f5f0fa !important;
  border-color: #e8e0f0 !important;
}

@keyframes mm-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Inline loading spinner for modal */
.mm-loading-inline {
  display: flex;
  justify-content: center;
  padding: 16px;
}

.mm-spinner-small {
  width: 20px;
  height: 20px;
  border: 2px solid #e8e0f0;
  border-top-color: #8b5cf6;
  border-radius: 50%;
  animation: mm-spin 0.8s linear infinite;
}

/* =============================================================================
   LIST VIEW
   ============================================================================= */

.mm-list-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mm-list-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mm-list-month-section {
  background: #fff;
  border: 1px solid #f0e8f5;
  border-radius: 12px;
  padding: 14px;
}

.mm-list-month-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #4b2c5e;
  margin: 0 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0e8f5;
}

.mm-list-header {
  display: none;
}

.mm-list-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #4b2c5e;
}

.mm-share-btn {
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.15s ease;
}

.mm-share-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.mm-list-item {
  background: #faf7fc;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 8px;
}

.mm-list-item:last-child {
  margin-bottom: 0;
}

.mm-list-date {
  min-width: 46px;
  text-align: center;
}

.mm-list-date-num {
  font-size: 1.2rem;
  font-weight: 700;
  color: #10b981;
  line-height: 1.1;
}

.mm-list-date-weekday {
  font-size: 0.6rem;
  color: #666;
}

.mm-list-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
}

.mm-list-windows {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.mm-window-chip {
  font-size: 0.65rem;
  padding: 3px 7px;
  background: #ecfdf5;
  color: #059669;
  border-radius: 999px;
  border: 1px solid #a7f3d0;
}

/* Old expand button - hidden */
.mm-list-expand-btn {
  display: none;
}

/* CTA link for list items - subtle, bottom right */
.mm-list-cta-btn {
  font-size: 0.6rem;
  font-weight: 500;
  color: #9ca3af;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.mm-list-cta-btn::after {
  content: '›';
  font-size: 0.75rem;
}

.mm-list-cta-btn:hover {
  color: #7b2cbf;
}

/* =============================================================================
   MODAL / BOTTOM SHEET
   ============================================================================= */

.mm-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 9998;
  display: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.mm-modal-overlay.show {
  display: block;
  opacity: 1;
}

.mm-modal {
  position: fixed;
  z-index: 9999;
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  max-height: 85vh;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* Mobile: bottom sheet */
.mm-modal {
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
}

.mm-modal.show {
  display: flex;
  transform: translateY(0);
}

/* Desktop: centered modal */
@media (min-width: 600px) {
  .mm-modal {
    bottom: auto;
    top: 50%;
    left: 50%;
    right: auto;
    width: 90%;
    max-width: 480px;
    border-radius: 20px;
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0;
  }
  
  .mm-modal.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.mm-modal-handle {
  width: 36px;
  height: 4px;
  background: #ddd;
  border-radius: 999px;
  margin: 10px auto 6px;
}

@media (min-width: 600px) {
  .mm-modal-handle { display: none; }
}

.mm-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid #f0e8f5;
}

.mm-modal-title {
  font-size: 1rem;
  font-weight: 700;
  color: #4b2c5e;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mm-modal-close {
  width: 32px;
  height: 32px;
  border: none;
  background: #f5f0fa;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.15s;
}

.mm-modal-close:hover {
  background: #ede9fe;
  color: #7b2cbf;
}

.mm-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.mm-modal-section {
  margin-bottom: 14px;
}

.mm-modal-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: #7b2cbf;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.mm-modal-windows {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mm-modal-window {
  font-size: 0.82rem;
  padding: 8px 14px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: #047857;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid #a7f3d0;
}

/* Details as <details> element */
.mm-modal-details {
  background: #faf7fc;
  border-radius: 12px;
  overflow: hidden;
}

.mm-modal-details summary {
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #7b2cbf;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.mm-modal-details summary::-webkit-details-marker {
  display: none;
}

.mm-modal-details summary::after {
  content: '▼';
  font-size: 0.6rem;
  margin-left: auto;
  transition: transform 0.2s;
}

.mm-modal-details[open] summary::after {
  transform: rotate(180deg);
}

.mm-modal-details-content {
  padding: 0 14px 14px;
}

.mm-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #f0e8f5;
  font-size: 0.78rem;
}

.mm-detail-row:last-child {
  border-bottom: none;
}

.mm-detail-label {
  color: #666;
}

.mm-detail-value {
  font-weight: 600;
  color: #333;
}

.mm-modal-footer {
  padding: 12px 16px;
  border-top: 1px solid #f0e8f5;
  display: flex;
  justify-content: center;
}

.mm-modal-share-btn {
  padding: 10px 24px;
  font-size: 0.82rem;
  font-weight: 600;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
}

.mm-modal-share-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

/* ---- Subtitle ---- */
.mm-subtitle {
  font-size: 0.75rem;
  color: #666;
  margin: 4px 0 0;
}

/* ---- Error State ---- */
.mm-error {
  text-align: center;
  padding: 30px;
  color: #dc2626;
  font-size: 0.85rem;
  grid-column: 1 / -1;
}

/* ---- No Results ---- */
.mm-no-results {
  text-align: center;
  padding: 40px 20px;
  color: #888;
  font-size: 0.9rem;
}

/* ---- Legend ---- */
.mm-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 12px 16px;
  margin-top: 10px;
  background: #f8f4fc;
  border-radius: 10px;
}

.mm-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #555;
  font-weight: 500;
}

.mm-legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
}

.mm-legend-dot.shubh {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid #a7f3d0;
}

.mm-legend-dot.not-shubh {
  background: #fff;
  border: 1px solid #e8e0f0;
}

.mm-legend-icon {
  font-size: 1rem;
}

/* ---- Actions Card (site-style buttons) ---- */
.mm-actions-card {
  margin-top: 16px;
  padding: 0 4px;
}

.mm-btn-group.equal-width-back {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mm-btn-group .btn-back {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid #7b2cbf;
  border-radius: 10px;
  background: #fff;
  color: #4b2c5e;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
}

.mm-btn-group .btn-back:hover {
  background: #f8f4fc;
  border-color: #5b1c9f;
}

.mm-btn-group .btn-primary-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.mm-btn-group .btn-primary-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

/* ---- Disclaimer (left aligned by default) ---- */

/* ---- Bottom CTA Bar (removed - using inline buttons) ---- */

/* ---- Preferred Badge (Modal) ---- */
.mm-preferred-badge {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.65rem;
  background: linear-gradient(135deg, #fef9c3 0%, #fef08a 100%);
  color: #92400e;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  font-weight: 600;
}

/* ---- Preferred Badge Small (List) ---- */
.mm-preferred-badge-small {
  margin-left: 4px;
  font-size: 0.7rem;
}

/* ---- More Chip (List) ---- */
.mm-more-chip {
  background: #f3e8ff !important;
  color: #7b2cbf !important;
  font-weight: 600;
}

/* ---- Show All Windows Button ---- */
.mm-show-all-windows-btn {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 8px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #7b2cbf;
  background: #f8f4fc;
  border: 1px dashed #d8b4fe;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.mm-show-all-windows-btn:hover {
  background: #f3e8ff;
  border-color: #a78bfa;
}

/* ---- Hidden Windows Container ---- */
.mm-hidden-windows {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed #e8e0f0;
}

/* ---- Toast Notification ---- */
.mm-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #333;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.mm-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =============================================================================
   RESPONSIVE TWEAKS
   ============================================================================= */

@media (max-width: 480px) {
  .mm-day {
    min-height: 38px;
    border-radius: 6px;
  }
  
  .mm-day-num {
    font-size: 0.7rem;
  }
  
  .mm-weekday-header span {
    font-size: 0.52rem;
    padding: 3px 1px;
  }
  
  .mm-title {
    font-size: 1rem;
  }
  
  .mm-month-label {
    font-size: 0.9rem;
    min-width: 140px;
  }
  
  .mm-month-card {
    padding: 10px;
  }
  
  .mm-month-card-title {
    font-size: 0.85rem;
  }
}

/* Desktop: hide nav arrows when showing 3 months */
@media (min-width: 992px) {
  .mm-month-label {
    min-width: 220px;
  }
  
  .mm-day {
    min-height: 40px;
  }
  
  .mm-shubh-icon {
    font-size: 0.5rem;
  }
}

/* Breadcrumb micro (same as daily graha, kept for consistency) */
.breadcrumb-nav.micro {
  margin: 8px 0 6px;
  font-size: 0.75rem;
  color: var(--muted, #6f6a80);
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .5rem;
}
.breadcrumb-nav.micro a {
  color: var(--brand-700, #6b21a8);
  text-decoration: none;
}
.breadcrumb-nav.micro .sep {
  opacity: .6;
}

/* Generic breadcrumb tweak */
.breadcrumb-nav,
.breadcrumb-nav.micro {
  margin-top: 4px !important;
  margin-bottom: 6px !important;
}
