/* ============================================================================
   ENHANCED COMMUNITY PROFILE & FORMS STYLING
   Professional, organized, and user-friendly design
   ============================================================================ */

/* ============================================================================
   IMPROVED SIDEBAR PROFILE WIDGET
   ============================================================================ */
.user-profile-widget {
  background: var(--color-bg-elevated, #ffffff);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  transition: box-shadow 0.3s ease;
}

[data-theme="dark"] .user-profile-widget {
  background: #1a1a1a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.user-profile-widget:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.profile-cover {
  height: 120px;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  position: relative;
}

[data-theme="dark"] .profile-cover {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.profile-avatar-container {
  position: relative;
  margin-top: -50px;
  text-align: center;
  padding: 0 1.5rem;
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid var(--color-bg-elevated, #ffffff);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  transition: transform 0.3s ease;
}

[data-theme="dark"] .profile-avatar {
  border-color: #1a1a1a;
}

.profile-avatar:hover {
  transform: scale(1.05);
}

.edit-avatar-btn {
  position: absolute;
  bottom: 5px;
  right: calc(50% - 50px);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

[data-theme="dark"] .edit-avatar-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #000000;
}

.edit-avatar-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.9);
}

[data-theme="dark"] .edit-avatar-btn:hover {
  background: rgba(255, 255, 255, 1);
}

.profile-info {
  padding: 1rem 1.5rem;
  text-align: center;
}

.profile-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text, #000000);
  margin: 0 0 0.25rem 0;
}

.profile-tagline {
  font-size: 0.875rem;
  color: var(--color-text-secondary, #666666);
  margin: 0 0 1rem 0;
}

.profile-stats-mini {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border, #e0e0e0);
  border-bottom: 1px solid var(--color-border, #e0e0e0);
  margin-bottom: 1rem;
}

[data-theme="dark"] .profile-stats-mini {
  border-color: #333333;
}

.profile-stats-mini > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.profile-stats-mini strong {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text, #000000);
}

.profile-stats-mini span {
  font-size: 0.75rem;
  color: var(--color-text-secondary, #666666);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.user-profile-widget .btn-block {
  margin: 0 1.5rem 1.5rem 1.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  gap: 0.375rem;
}

.user-profile-widget .btn-block svg {
  width: 14px;
  height: 14px;
}

/* ============================================================================
   IMPROVED NAVIGATION BUTTONS
   ============================================================================ */
.social-nav {
  background: var(--color-bg-elevated, #ffffff);
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
}

[data-theme="dark"] .social-nav {
  background: #1a1a1a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.social-nav-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.875rem 1rem;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--color-text-secondary, #666666);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  position: relative;
}

.social-nav-btn:hover {
  background: var(--color-bg-secondary, #f5f5f5);
  color: var(--color-text, #000000);
  transform: translateX(4px);
}

[data-theme="dark"] .social-nav-btn:hover {
  background: #2d2d2d;
  color: #ffffff;
}

.social-nav-btn.active {
  background: #000000;
  color: #ffffff;
  font-weight: 600;
}

[data-theme="dark"] .social-nav-btn.active {
  background: #ffffff;
  color: #000000;
}

.social-nav-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.notification-badge {
  position: absolute;
  right: 1rem;
  background: #cc0000;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.125rem 0.5rem;
  border-radius: 12px;
  min-width: 20px;
  text-align: center;
}

/* ============================================================================
   IMPROVED WIDGETS
   ============================================================================ */
.widget {
  background: var(--color-bg-elevated, #ffffff);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
}

[data-theme="dark"] .widget {
  background: #1a1a1a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.widget-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text, #000000);
  margin: 0 0 1rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-border, #e0e0e0);
}

[data-theme="dark"] .widget-title {
  border-color: #333333;
}

/* ============================================================================
   IMPROVED CREATE POST BOX
   ============================================================================ */
.create-post-box {
  background: var(--color-bg-elevated, #ffffff);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

[data-theme="dark"] .create-post-box {
  background: #1a1a1a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.create-post-avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-border, #e0e0e0);
}

[data-theme="dark"] .create-post-avatar img {
  border-color: #333333;
}

.create-post-input {
  flex: 1;
  background: var(--color-bg-secondary, #f5f5f5);
  border: 2px solid transparent;
  border-radius: 24px;
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--color-text-secondary, #666666);
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  width: 100%;
}

[data-theme="dark"] .create-post-input {
  background: #2d2d2d;
}

.create-post-input:hover {
  background: var(--color-bg-secondary, #f5f5f5);
  border-color: var(--color-border-hover, #cccccc);
}

[data-theme="dark"] .create-post-input:hover {
  background: #333333;
  border-color: #4a4a4a;
}

.create-post-input:focus {
  outline: none;
  border-color: #000000;
}

[data-theme="dark"] .create-post-input:focus {
  border-color: #ffffff;
}

.create-post-actions {
  background: var(--color-bg-elevated, #ffffff);
  border-radius: 0 0 12px 12px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

[data-theme="dark"] .create-post-actions {
  background: #1a1a1a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.post-action-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: transparent;
  border: 1px solid var(--color-border, #e0e0e0);
  border-radius: 8px;
  color: var(--color-text-secondary, #666666);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

[data-theme="dark"] .post-action-btn {
  border-color: #333333;
}

.post-action-btn:hover {
  background: var(--color-bg-secondary, #f5f5f5);
  border-color: var(--color-border-hover, #cccccc);
  color: var(--color-text, #000000);
  transform: translateY(-2px);
}

[data-theme="dark"] .post-action-btn:hover {
  background: #2d2d2d;
  border-color: #4a4a4a;
  color: #ffffff;
}

.post-action-btn svg {
  width: 20px;
  height: 20px;
}

/* ============================================================================
   IMPROVED MODAL FORMS
   ============================================================================ */
.modal-content {
  background: var(--color-bg-elevated, #ffffff);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

[data-theme="dark"] .modal-content {
  background: #1a1a1a;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 2px solid var(--color-border, #e0e0e0);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-bg-secondary, #f5f5f5);
}

[data-theme="dark"] .modal-header {
  background: #0d0d0d;
  border-color: #333333;
}

.modal-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text, #000000);
  margin: 0;
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-text-secondary, #666666);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--color-bg-secondary, #f5f5f5);
  color: var(--color-text, #000000);
}

[data-theme="dark"] .modal-close:hover {
  background: #2d2d2d;
  color: #ffffff;
}

.modal-body {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}

/* ============================================================================
   IMPROVED FORM STYLING
   ============================================================================ */
.form-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border, #e0e0e0);
}

[data-theme="dark"] .form-section {
  border-color: #333333;
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text, #000000);
  margin: 0 0 1.25rem 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text, #000000);
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
}

.form-input,
.form-textarea,
.form-select,
select.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: var(--color-text, #000000);
  background: var(--color-bg, #ffffff);
  border: 2px solid var(--color-border, #e0e0e0);
  border-radius: 8px;
  transition: all 0.2s ease;
  font-family: inherit;
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .form-textarea,
[data-theme="dark"] .form-select,
[data-theme="dark"] select.form-input {
  background: #0d0d0d;
  border-color: #333333;
}

.form-input:hover,
.form-textarea:hover,
.form-select:hover,
select.form-input:hover {
  border-color: var(--color-border-hover, #cccccc);
}

[data-theme="dark"] .form-input:hover,
[data-theme="dark"] .form-textarea:hover,
[data-theme="dark"] .form-select:hover,
[data-theme="dark"] select.form-input:hover {
  border-color: #4a4a4a;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus,
select.form-input:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .form-input:focus,
[data-theme="dark"] .form-textarea:focus,
[data-theme="dark"] .form-select:focus,
[data-theme="dark"] select.form-input:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9375rem;
  color: var(--color-text, #000000);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* ============================================================================
   IMPROVED BUTTONS
   ============================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
}

.btn-primary {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

[data-theme="dark"] .btn-primary {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.btn-primary:hover {
  background: #333333;
  border-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .btn-primary:hover {
  background: #e6e6e6;
  border-color: #e6e6e6;
}

.btn-secondary,
.btn-outline {
  background: transparent;
  color: var(--color-text, #000000);
  border-color: var(--color-border, #e0e0e0);
}

[data-theme="dark"] .btn-secondary,
[data-theme="dark"] .btn-outline {
  border-color: #333333;
}

.btn-secondary:hover,
.btn-outline:hover {
  background: var(--color-bg-secondary, #f5f5f5);
  border-color: var(--color-border-hover, #cccccc);
  transform: translateY(-2px);
}

[data-theme="dark"] .btn-secondary:hover,
[data-theme="dark"] .btn-outline:hover {
  background: #2d2d2d;
  border-color: #4a4a4a;
}

.btn-block {
  width: 100%;
  display: flex;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--color-border, #e0e0e0);
}

[data-theme="dark"] .modal-actions {
  border-color: #333333;
}

/* ============================================================================
   AI HELPER WIDGET
   ============================================================================ */
.ai-helper-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.ai-helper-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .ai-helper-button {
  background: linear-gradient(135deg, #ffffff 0%, #e6e6e6 100%);
  color: #000000;
}

.ai-helper-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ai-helper-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.ai-helper-button:hover::before {
  opacity: 1;
}

.ai-helper-button svg {
  width: 28px;
  height: 28px;
  z-index: 1;
}

.ai-helper-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  animation: pulse 2s infinite;
  opacity: 0.5;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0;
  }
}

.ai-helper-panel {
  width: 380px;
  max-height: 600px;
  background: var(--color-bg-elevated, #ffffff);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: slideInUp 0.3s ease;
}

[data-theme="dark"] .ai-helper-panel {
  background: #1a1a1a;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.ai-helper-panel.active {
  display: flex;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ai-helper-header {
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

[data-theme="dark"] .ai-helper-header {
  background: linear-gradient(135deg, #ffffff 0%, #e6e6e6 100%);
  color: #000000;
}

.ai-helper-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ai-helper-close {
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.ai-helper-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .ai-helper-close:hover {
  background: rgba(0, 0, 0, 0.2);
}

.ai-helper-body {
  padding: 1.5rem;
  flex: 1;
  overflow-y: auto;
}

.ai-suggestion {
  padding: 1rem;
  background: var(--color-bg-secondary, #f5f5f5);
  border-radius: 10px;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

[data-theme="dark"] .ai-suggestion {
  background: #2d2d2d;
}

.ai-suggestion:hover {
  border-color: #000000;
  transform: translateX(4px);
}

[data-theme="dark"] .ai-suggestion:hover {
  border-color: #ffffff;
}

.ai-suggestion-title {
  font-weight: 600;
  color: var(--color-text, #000000);
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
}

.ai-suggestion-desc {
  font-size: 0.875rem;
  color: var(--color-text-secondary, #666666);
  line-height: 1.5;
}

.ai-helper-input {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--color-border, #e0e0e0);
  display: flex;
  gap: 0.75rem;
}

[data-theme="dark"] .ai-helper-input {
  border-color: #333333;
}

.ai-helper-input input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border, #e0e0e0);
  border-radius: 24px;
  font-size: 0.875rem;
  background: var(--color-bg, #ffffff);
  color: var(--color-text, #000000);
}

[data-theme="dark"] .ai-helper-input input {
  background: #0d0d0d;
  border-color: #333333;
}

.ai-helper-input input:focus {
  outline: none;
  border-color: #000000;
}

[data-theme="dark"] .ai-helper-input input:focus {
  border-color: #ffffff;
}

.ai-helper-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

[data-theme="dark"] .ai-helper-send {
  background: #ffffff;
  color: #000000;
}

.ai-helper-send:hover {
  transform: scale(1.1);
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */
@media (max-width: 768px) {
  .ai-helper-widget {
    bottom: 1rem;
    right: 1rem;
  }

  .ai-helper-button {
    width: 56px;
    height: 56px;
  }

  .ai-helper-panel {
    width: calc(100vw - 2rem);
    max-width: 360px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .modal-body {
    padding: 1.5rem;
  }

  .modal-actions {
    flex-direction: column-reverse;
  }

  .modal-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .ai-helper-button {
    width: 52px;
    height: 52px;
  }

  .ai-helper-button svg {
    width: 24px;
    height: 24px;
  }
}

/* ============================================================================
   CHAT SUB-TABS (for Chat vs Forums)
   ============================================================================ */
.chat-sub-tabs {
  display: flex;
  gap: 1rem;
  padding: 0 0 2rem 0;
  border-bottom: 2px solid var(--color-border, #e0e0e0);
  margin-bottom: 2rem;
}

[data-theme="dark"] .chat-sub-tabs {
  border-color: #333333;
}

.chat-sub-tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: transparent;
  border: 2px solid var(--color-border, #e0e0e0);
  border-radius: 8px;
  color: var(--color-text-secondary, #666666);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

[data-theme="dark"] .chat-sub-tab-btn {
  border-color: #333333;
  color: #9ca3af;
}

.chat-sub-tab-btn:hover {
  background: var(--color-bg-secondary, #f5f5f5);
  border-color: var(--color-border-hover, #cccccc);
  color: var(--color-text, #000000);
}

[data-theme="dark"] .chat-sub-tab-btn:hover {
  background: #2d2d2d;
  border-color: #4a4a4a;
  color: #ffffff;
}

.chat-sub-tab-btn.active {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

[data-theme="dark"] .chat-sub-tab-btn.active {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.chat-sub-tab-btn svg {
  width: 20px;
  height: 20px;
}

.chat-view {
  display: none;
}

.chat-view.active {
  display: block;
}

/* Ensure chat-rooms-view doesn't break the chat layout */
#chat-rooms-view.chat-view.active {
  display: block;
  height: 100%;
}

#forums-view.chat-view.active {
  display: block;
}
