/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Styles de pagination Pagy - CSS standard pour fonctionner partout */
.pagy {
    display: flex;
    align-items: center;
    gap: 0.25rem; /* space-x-1 */
    font-weight: 600; /* font-semibold */
    font-size: 0.875rem; /* text-sm */
    color: #64748b; /* text-slate-500 */
}
.pagy a:not(.gap) {
    display: block;
    border-radius: 0.5rem; /* rounded-lg */
    padding: 0.25rem 0.75rem; /* px-3 py-1 */
    background-color: #f1f5f9; /* bg-slate-100 */
    transition: all 0.2s;
}
.pagy a:not(.gap):hover {
    background-color: #e2e8f0; /* bg-slate-200 */
    color: #334155; /* text-slate-700 */
}
.pagy a.current {
    color: #ffffff; /* text-white */
    background-color: #00a8ff; /* bg-[#00a8ff] */
}
.pagy a.current:hover {
    background-color: #0097e6; /* hover:bg-[#0097e6] */
}
.pagy a:not([href]) {
    color: #cbd5e1; /* text-slate-300 */
    background-color: #f8fafc; /* bg-slate-50 */
    cursor: not-allowed;
}
.pagy a:not([href]):hover {
    background-color: #f8fafc; /* hover:bg-slate-50 */
}