body {
  min-width: inherit !important;
  background: #f9fafb;
}

/* Container */
.announcement-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.breadcrumb a {
  color: #1a2a72;
  text-decoration: none;
  transition: color 0.15s ease;
}

.breadcrumb a:hover {
  color: #43cea2;
}

.breadcrumb span {
  color: #9ca3af;
}

/* Header Section */
.announcement-header {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.announcement-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #1a2a72 0%, #43cea2 100%);
}

.announcement-type {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  background: #f0f4ff;
  color: #1a2a72;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-bottom: 1rem;
}

.announcement-header h1 {
  font-size: 1.875rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 1.5rem;
  line-height: 1.3;
}

.announcement-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e5e7eb;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.meta-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.meta-value {
  font-size: 0.9375rem;
  color: #1a1a1a;
  font-weight: 500;
}

.meta-value.highlight {
  color: #1a2a72;
  font-weight: 600;
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.status-badge.published {
  background: #d1fae5;
  color: #065f46;
}

.status-badge.pending {
  background: #fef3c7;
  color: #92400e;
}

/* 2-Column Layout */
#content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
}

/* Content Section */
.announcement-content {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  flex: 1;
  min-width: 0;
}

.content-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f3f4f6;
}

.content-header svg {
  width: 24px;
  height: 24px;
  color: #1a2a72;
}

.content-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.announcement-text {
  font-family: "Courier New", serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #1a1a1a;
  background: #fafbfc;
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}

/* Actions Section */
.announcement-actions {
  flex-shrink: 0;
  width: 280px;
}

.actions-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-bottom: 1rem;
}

.actions-grid {
  gap: 0.75rem;
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  background: white;
  border: 1px solid #1a2a72;
  color: #1a2a72;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.15s ease;
  text-align: center;
}
.action-button#publish-legal-announcement-button svg {
  width: 35px;
  height: 35px;
}
.action-button svg {
  width: 18px;
  height: 18px;
}

.action-button:hover {
  background: #1a2a72;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 42, 114, 0.2);
}

.action-button.primary {
  background: #1a2a72;
  color: white;
}

.action-button.primary:hover {
  background: #43cea2;
  border-color: #43cea2;
}

/* Info Box */
.info-box {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 6px;
  padding: 1rem;
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
}

.info-box svg {
  width: 20px;
  height: 20px;
  color: #0284c7;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-box-content {
  flex: 1;
}

.info-box-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0c4a6e;
  margin-bottom: 0.25rem;
}

.info-box-text {
  font-size: 0.8125rem;
  color: #075985;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .announcement-container {
    padding: 1.5rem 1rem 2rem;
  }
  /* Stack 2-column layout on mobile */
  #content-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }
  .announcement-header {
    padding: 1.5rem;
  }
  .announcement-header h1 {
    font-size: 1.5rem;
  }
  .announcement-meta {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .announcement-content {
    padding: 1.5rem;
    margin-bottom: 0;
  }
  .announcement-text {
    font-size: 0.9375rem;
    padding: 1rem;
  }
  .announcement-actions {
    width: 100%;
  }
  .actions-grid {
    grid-template-columns: 1fr;
  }
  .breadcrumb {
    font-size: 0.8125rem;
    margin-bottom: 1.5rem;
  }
}

/*# sourceMappingURL=annonce-legale.css.map */
