/* Fichier: style.css */
/* Styles généraux pour l'application */

body {
    font-family: 'Inter', sans-serif;
}

/* Styles spécifiques à la page des statistiques (stats.php) */
.gridjs-container {
    font-size: 14px;
}

.gridjs-input {
    border: 1px solid #d1d5db;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    width: 100%;
}

.gridjs-table {
    table-layout: fixed;
    width: 100%;
}

.gridjs-td,
.gridjs-th-content {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.delete-icon {
    cursor: pointer;
    color: #9ca3af;
    transition: color 0.2s;
}

.delete-icon:hover {
    color: #ef4444;
}

#table-wrapper {
    overflow-x: auto;
}

.clickable-clicks {
    font-weight: 600;
    color: #2563eb;
    cursor: pointer;
}

.clickable-clicks:hover {
    text-decoration: underline;
}
