body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #333;
    color: white;
    padding: 15px 25px;
}

.banner img {
    height: 75px;
    margin-right: 20px;
}

.banner h1 {
    margin: 0;
    font-size: 1.5rem;
}

.banner h2 {
    margin: 0;
    font-size: 1rem;
}


.full-length_search_bar {
    width: 95%;
    max-width: 95%;
    padding: 10px 10px;
    box-sizing: border-box;
}


.full-length_search_bar_tall {
    width: 100%;
    height: 200px; /* Adjust for desired height */
    padding: 10px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.5;
    resize: vertical; /* Allow resizing */
    white-space: pre-wrap; /* Preserves formatting */
}

.full-length_search_bar_tall::placeholder {
    text-align: left;
    vertical-align: top; /* This may not work on all browsers */
}

.content {
    padding: 10px 10px;
}


.gene_search_results_table {
    width: 90%;
    border-collapse: collapse;
}

.gene_search_results_table th, td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

.gene_search_results_table th {
    background-color: #f2f2f2;
}

.text-box-container {
    display: flex; /* Enables flexbox for the container */
    justify-content: center; /* Centers horizontally */
}

.text-box {
    background-color: #f0f0f0; /* Light grey background */
    border: 2px solid #dcdcdc; /* Slightly darker border */
    border-radius: 10px; /* Rounded corners */
    padding: 15px; /* Add padding for better readability */
    width: 97%; /* Set a fixed width */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    font-family: Arial, sans-serif; /* Set font */
    font-size: 15px; /* Adjust font size */
    color: #333; /* Text color */
    text-align: left; /* Keeps the text aligned to the left */
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}
li {
    margin-bottom: 15px; /* External space between items */
    padding-left: 5px; /* Internal space inside items */
}

#cy {
    width: 90%;
    height: 600px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin: 20px;
}