/* .grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.grid-item {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: center;
}

.flex-box{
    display: flex;
    flex-direction: row;
    justify-content: space-around;

}

.kieliBtn:hover{
    cursor: pointer;
}

.bolded{
    font-weight: bold;
} */


.grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.grid-item {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: center;
}

.flex-box{
    display: flex;
    flex-direction: row;
    justify-content: space-around;

}

.kieliBtn:hover{
    cursor: pointer;
}

.bolded{
    font-weight: bold;
}

.ostosrivi {
    border:1px solid #222;
    border-radius:5px;
    padding:0.5em;
    font-size:14pt;
    margin-bottom: 0.5em;
}

.otitle {
    font-size:10pt;
    margin-bottom:-0.2em;
    margin-top:0.5em;
}

#kalastajaSuggestions {
    position: absolute; /* Position the suggestions below the input */
    width: 100%; /* Ensure the dropdown is as wide as the input field */
    z-index: 1000; /* Keep it on top of other elements */
    /* max-height: 200px; */ /* Limit the height of the dropdown */
    overflow-y: auto; /* Allow scrolling if there are too many suggestions */
    background-color: white; /* Background color of the suggestion box */
    border: 1px solid #ddd; /* Light border around the dropdown */
    border-radius: 0 0 4px 4px; /* Rounded corners on the bottom */
}

#kalastajaSuggestions .list-group-item {
    padding: 10px 15px; /* Padding inside the item */
    cursor: pointer; /* Change cursor to pointer on hover */
    border: none; /* Remove default borders */
    border-bottom: 1px solid #ddd; /* Add a thin border between items */
}

#kalastajaSuggestions .list-group-item:last-child {
    border-bottom: none; /* Remove border for the last item */
}

#kalastajaSuggestions .list-group-item:hover {
    background-color: #f5f5f5; /* Light gray background on hover */
}

#kalastajaSuggestions .list-group-item.active {
    background-color: #007bff; /* Highlight color when item is active (selected) */
    color: white;
}
#kalastajaSuggestions .list-group-item.active {
    background-color: #007bff; /* Highlight color when item is active (selected) */
    color: white;
}

#kalastajaSuggestions .list-group-item.active .text-muted{
    color: white;
}

/*
#kalastusjaksodiv {
    font-family: Arial, sans-serif;
}
.input-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}
.form-control {
    flex: 1;
    min-width: 120px;
}
.bolded {
    font-weight: bold;
}
@media (max-width: 480px) {
    .input-group {
        flex-direction: column;
    }
    .form-control {
        min-width: 100%;
    }
}
*/