/* Custom styles for the search input group */
.input-group .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Ensure list items don't have default list styling */
.list-group {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form-control:focus {
    border-color: #C74900;
    box-shadow: 0 0 5px rgba(199, 73, 0, 0.5);
}

/* Highlight active/focused search result */
.list-group-item.active {
    border-color: #C74900;
    box-shadow: 0 0 5px rgba(199, 73, 0, 0.5);
    color: #212529;
    background-color: #FFFFFF;
    outline: none;
}
