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

/* Container */
.container {
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  padding: 2rem 1.5rem 3rem;
  margin: 1rem auto 0;
}

/* Page Title */
#legal-announcements {
  /* Empty State */
}
#legal-announcements h1 {
  font-size: 2rem;
  font-weight: 300;
  color: #1a1a1a;
  padding-bottom: 1rem;
  margin: 5rem 0;
  border-bottom: 1px solid #1a2a72;
}
#legal-announcements > p {
  text-align: center;
  color: #6b7280;
  font-size: 1rem;
  padding: 3rem;
  background: white;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

/* Search Form */
#search-form-container {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

#legal-announcement-search-form .search-form-fields {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
#legal-announcement-search-form .search-form-fields .form-control-field {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#legal-announcement-search-form label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.25rem;
  display: block;
}
#legal-announcement-search-form input[type=number],
#legal-announcement-search-form input[type=date],
#legal-announcement-search-form select {
  width: 100%;
  padding: 0.625rem 0.875rem;
  box-sizing: border-box;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.9375rem;
  color: #1a1a1a;
  background: white;
  transition: all 0.15s ease;
}
#legal-announcement-search-form input[type=number]:focus,
#legal-announcement-search-form input[type=date]:focus,
#legal-announcement-search-form select:focus {
  outline: none;
  border-color: #1a2a72;
  box-shadow: 0 0 0 3px rgba(26, 42, 114, 0.1);
}
#legal-announcement-search-form input[type=number]::placeholder,
#legal-announcement-search-form input[type=date]::placeholder,
#legal-announcement-search-form select::placeholder {
  color: #9ca3af;
}
#legal-announcement-search-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  cursor: pointer;
}
#legal-announcement-search-form .search-form-actions {
  box-sizing: border-box;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
#legal-announcement-search-form .search-form-actions .btn-search,
#legal-announcement-search-form .search-form-actions .btn-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
  cursor: pointer;
  border: none;
}
#legal-announcement-search-form .search-form-actions .btn-search {
  background: linear-gradient(135deg, #1a2a72 0%, #2a3a82 100%);
  color: white;
  border: 1px solid #1a2a72;
}
#legal-announcement-search-form .search-form-actions .btn-search:hover {
  background: linear-gradient(135deg, #2a3a82 0%, #43cea2 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 42, 114, 0.25);
}
#legal-announcement-search-form .search-form-actions .btn-reset {
  background: white;
  color: #6b7280;
  border: 1px solid #d1d5db;
}
#legal-announcement-search-form .search-form-actions .btn-reset:hover {
  background: #f9fafb;
  color: #1a2a72;
  border-color: #1a2a72;
}

#legal-announcements {
  /* Announcements Grid */
}
#legal-announcements .legal-announcements-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  /* Announcement Card */
}
#legal-announcements .legal-announcements-list .legal-announcement-item {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  /* Content Block */
  /* Actions */
}
#legal-announcements .legal-announcements-list .legal-announcement-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, #1a2a72 0%, #43cea2 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
#legal-announcements .legal-announcements-list .legal-announcement-item:hover {
  border-color: #1a2a72;
  box-shadow: 0 4px 12px rgba(26, 42, 114, 0.1);
  transform: translateY(-2px);
}
#legal-announcements .legal-announcements-list .legal-announcement-item:hover::before {
  opacity: 1;
}
#legal-announcements .legal-announcements-list .legal-announcement-item h2 {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
#legal-announcements .legal-announcements-list .legal-announcement-item h2 em {
  color: #1a2a72;
  font-style: normal;
  font-weight: 600;
  font-size: 1.25rem;
  display: flex;
  margin-top: 0.5rem;
  align-items: center;
  gap: 3px;
}
#legal-announcements .legal-announcements-list .legal-announcement-item p {
  margin: 0 0 0.875rem;
  color: #1a1a1a;
  font-size: 0.9375rem;
  line-height: 1.6;
}
#legal-announcements .legal-announcements-list .legal-announcement-item p:last-of-type {
  margin-bottom: 0;
}
#legal-announcements .legal-announcements-list .legal-announcement-item p strong {
  color: #6b7280;
  font-weight: 500;
  font-size: 0.875rem;
  display: inline-block;
  min-width: 180px;
}
#legal-announcements .legal-announcements-list .legal-announcement-item .content {
  font-family: "Courier New", Courier, monospace;
  background: #f9fafb;
  padding: 1rem;
  border-radius: 6px;
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #1a1a1a;
  border: 1px solid #e5e7eb;
}
#legal-announcements .legal-announcements-list .legal-announcement-item .al-actions {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
  /* Buttons */
}
#legal-announcements .legal-announcements-list .legal-announcement-item .al-actions .al-link-button {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  background: white;
  border: 1px solid #1a2a72;
  color: #1a2a72;
  text-decoration: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.15s ease;
  margin: 0;
}
#legal-announcements .legal-announcements-list .legal-announcement-item .al-actions .al-link-button svg {
  margin-right: 5px;
  width: 16px;
  height: 16px;
}
#legal-announcements .legal-announcements-list .legal-announcement-item .al-actions .al-link-button:hover {
  background: #1a2a72;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 42, 114, 0.2);
}
#legal-announcements .legal-announcements-list .legal-announcement-item .al-actions .al-link-button:active {
  transform: translateY(0);
}

/* Pagination */
.navigation {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  padding: 1.5rem 0;
}
.navigation .pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navigation .pagination a,
.navigation .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  color: #1a2a72;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.15s ease;
  background: white;
}
.navigation .pagination span {
  padding: 0;
}
.navigation .pagination a:hover {
  background: #1a2a72;
  color: white;
  border-color: #1a2a72;
}
.navigation .pagination .current {
  background: #1a2a72;
  color: white;
  border-color: #1a2a72;
  cursor: default;
}
.navigation .pagination .disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 1.5rem 1rem 2rem;
  }
  #legal-announcements h1 {
    font-size: 1.2rem;
    margin: 1.5rem 0;
  }
  /* Search Form responsive */
  #search-form-container {
    padding: 1.25rem;
  }
  #legal-announcement-search-form .search-form-fields {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  #legal-announcement-search-form .search-form-fields .form-control-field {
    width: 100%;
  }
  #legal-announcement-search-form .search-form-actions {
    flex-direction: column;
  }
  #legal-announcement-search-form .search-form-actions .btn-search,
  #legal-announcement-search-form .search-form-actions .btn-reset {
    width: 100%;
    justify-content: center;
  }
  /* Categories responsive */
  #categories {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.25rem;
    margin-bottom: 2rem;
  }
  .category-title {
    font-size: 0.8125rem;
  }
  .category-link {
    font-size: 0.8125rem;
    padding: 0.625rem 0.75rem;
  }
  .legal-announcements-list {
    gap: 1rem;
  }
  .legal-announcement-item {
    padding: 1.25rem;
  }
  .legal-announcement-item h2 em {
    font-size: 1.125rem;
  }
  .legal-announcement-item p strong {
    display: block;
    min-width: auto;
    margin-bottom: 0.25rem;
  }
  .al-actions {
    flex-direction: column;
  }
  .al-link-button {
    width: 100%;
    justify-content: center;
  }
  .navigation a,
  .navigation span {
    min-width: 36px;
    height: 36px;
    font-size: 0.8125rem;
  }
}
/* From 992px and up: 2 columns */
@media (min-width: 992px) {
  #legal-announcements .legal-announcements-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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