body	{
	font-family: Arial, sans-serif; 
	}
.header {
	background-color: #007BFF; /* Blue background */
            color: white;
            padding: 15px 20px;
            display: flex;
            align-items: center;
        }
.header img {
            height: 50px; /* Logo size */
            margin-right: 20px;
        }
.footer {
            background-color: #f8f9fa; /* Light grey background */
	    position: fixed;
  	    right: 15px;
	    top: 10 px;
	    bottom: 15px;
            color: black;
            padding: 10px 10px 10px 10px;
	    font-size: 0.8em;
            text-align: left;
	    border-top: 1px solid #e0e0e0; /* Slightly darker line above */
	}

/* tables */

table        {
  border: thin solid black;
  text-align: left;
  /* width: 100%;*/
  border-collapse: collapse
}

/* table header */

th           {
  border: thin solid gray;
  border-collapse: collapse;
  padding: 4px 2px 2px 4px;
  font-weight: bold;
}

/* table cell */

td           {
  border: thin solid gray;
  border-collapse: collapse;
  padding: 4px 2px 2px 4px;

}

#searchInput {
            width: 500px;
            padding: 8px;
            font-size: 16px;
        }
#searchResults {
            margin-top: 20px;
            border: 1px solid #ccc;
            padding: 10px 20px;
            max-height: 500px;
            overflow-y: auto;
        }
.search-container {
            width: 70%;  /* Limiting width to 70% */
            margin: auto;  /* Centering the container */
        }

.result-item {
    display: flex;
    justify-content: space-between; /* Adjust this to control the spacing */
    padding: 8px 0; /* Increased line spacing */
}

.term, .translation {
    flex: 1 1 50%; /* Each takes up half of the container */
    padding-right: 10px; /* Space between columns */
}

.result-item:nth-child(odd) {
    background-color: #f9f9f9;
}

.result-item:nth-child(even) {
    background-color: #ffffff;
}
