/* Utility helpers for the fiche entreprise v2 layout */
.tw\:flex { display: flex; }
.tw\:flex-col { flex-direction: column; }
.tw\:flex-wrap { flex-wrap: wrap; }
.tw\:flex-1 { flex: 1 1 0%; }
.tw\:flex-shrink-0 { flex-shrink: 0; }
.tw\:items-center { align-items: center; }
.tw\:items-start { align-items: flex-start; }
.tw\:justify-between { justify-content: space-between; }
.tw\:justify-center { justify-content: center; }
.tw\:justify-end { justify-content: flex-end; }
.tw\:gap-2 { gap: 0.5rem; }
.tw\:gap-4 { gap: 1rem; }
.tw\:gap-x-12 { column-gap: 3rem; }
.tw\:gap-y-2 { row-gap: 0.5rem; }
.tw\:gap-y-4 { row-gap: 1rem; }
.tw\:grid { display: grid; }
.tw\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tw\:rounded { border-radius: 0.5rem; }
.tw\:rounded-t { border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; }
.tw\:rounded-b { border-bottom-left-radius: 0.5rem; border-bottom-right-radius: 0.5rem; }
.tw\:border { border: 1px solid #e5e7eb; }
.tw\:border-x { border-left: 1px solid #e5e7eb; border-right: 1px solid #e5e7eb; }
.tw\:border-t { border-top: 1px solid #e5e7eb; }
.tw\:border-b { border-bottom: 1px solid #e5e7eb; }
.tw\:border-gray-200 { border-color: #e5e7eb; }
.tw\:cursor-pointer { cursor: pointer; }
.tw\:overflow-hidden { overflow: hidden; }
.tw\:overflow-x-auto { overflow-x: auto; }
.tw\:position-relative { position: relative; }
.tw\:w-full { width: 100%; }
.tw\:w-xs { width: 20rem; }
.tw\:w-24 { width: 6rem; }
.tw\:h-full { height: 100%; }
.tw\:ml-auto { margin-left: auto; }
.tw\:ml-4 { margin-left: 1rem; }
.tw\:mr-2 { margin-right: 0.5rem; }
.tw\:pl-2 { padding-left: 0.5rem; }
.tw\:px-4 { padding-left: 1rem; padding-right: 1rem; }
.tw\:py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.tw\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.tw\:mt-4 { margin-top: 1rem; }
.tw\:mt-15 { margin-top: 3.75rem; }
.tw\:text-center { text-align: center; }
.tw\:text-left { text-align: left; }
.tw\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.tw\:font-bold { font-weight: 700; }
.tw\:font-semibold { font-weight: 600; }
.tw\:text-neutral-500 { color: #737373; }
.tw\:text-gray-800 { color: #1f2937; }
.tw\:\!text-gray-900 { color: #111827 !important; }
.tw\:text-white { color: #ffffff; }
.tw\:bg-white { background-color: #ffffff; }
.tw\:bg-gray-300 { background-color: #d1d5db; color: #111827; }
.tw\:bg-teal-500 { background-color: #14b8a6; }
.tw\:border-gray-200 { border-color: #e5e7eb; }
.tw\:whitespace-nowrap { white-space: nowrap; }

.tw\:bg-gray-300,
.tw\:bg-teal-500,
.tw\:bg-white {
    transition: background-color 0.2s ease;
}

.tw\:hover\:bg-gray-400:hover { background-color: #9ca3af; }
.tw\:hover\:bg-teal-400:hover { background-color: #2dd4bf; }
.tw\:hover\:\!bg-gray-50:hover { background-color: #f9fafb !important; }
.tw\:bg-teal-500,
.tw\:hover\:bg-teal-400 {
    color: #ffffff;
}
.tw\:bg-gray-300,
.tw\:hover\:bg-gray-400,
.tw\:hover\:\!bg-gray-50 {
    color: #0f172a;
}

@media (min-width: 640px) {
    .tw\:sm\:mt-0 { margin-top: 0; }
}

@media (min-width: 768px) {
    .tw\:md\:flex-row { flex-direction: row; }
    .tw\:md\:items-start { align-items: flex-start; }
    .tw\:md\:flex-1 { flex: 1 1 0%; }
    .tw\:md\:mt-0 { margin-top: 0; }
    .tw\:md\:ml-12 { margin-left: 3rem; }
}

@media (min-width: 1024px) {
    .tw\:lg\:flex-row { flex-direction: row; }
    .tw\:lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .tw\:lg\:w-1\/2 { width: 50%; }
}

