body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 10px;
    min-height: 100vh;
}

.container {
    width: 90%;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

.logo {
    width: 160px;
    height: auto;
    margin-right: 60px;
    margin-left: 30px;
}

h1 {
    text-align: center;
    color: #333; /* Dark grey text color */
}

.search-container {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

label {
    margin-right: 10px;
    line-height: 30px;
}

input {
    flex: 1;
    padding: 8px;
}

button {
    background-color: #2e2e2e; /* Light grey button color */
    color: #fff; /* White text color */
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #999; /* Slightly darker grey on hover */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

th {
    background-color: #2e2e2e; /* Light grey header background color */
    color: white;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination button {
    background-color: #ccc; /* Light grey button color */
    color: white;
    border: none;
    padding: 8px 16px;
    margin: 0 4px;
    border-radius: 4px;
    cursor: pointer;
}

.pagination button:hover {
    background-color: #999; /* Slightly darker grey on hover */
}

.pagination button.active {
    background-color: #999; /* Dark grey active button color */
}



.search-type-label {
    margin-right: 10px;
    font-weight: bold;
}

.Num_of_Specific_Tissues {
    margin-right: 10px;
    font-weight: bold;
}

.Pval_cut_off {
    margin-right: 10px;
    font-weight: bold;
}

/* Add this CSS to your styles */
a.column-link {
    position: relative;
    text-decoration: none;
    color: inherit;
}

a.column-link::after {
    content: attr(data-tooltip); /* Set the content to the data-tooltip attribute */
    position: absolute;
    bottom: 125%; /* Position the tooltip above the link */
    left: 50%;
    transform: translateX(-50%);
    background-color: #ccc; /* Tooltip background color */
    color: #333; /* Tooltip text color */
    padding: 5px;
    border-radius: 5px;
    white-space: nowrap;
    display: none; /* Hide the tooltip by default */
}

a.column-link:hover::after {
    display: block; /* Show the tooltip when hovering */
}

.search-exemple-container {
    color: #555; /* Set the color for the gray text */
    margin-bottom: 20px; /* Add space at the bottom */
}


