/* Style for the search container */
.search-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

/* Style for the search input field */
#s {
    width: 300px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Include padding and border in the element's total width */
}

/* Style for the search button */
#searchsubmit {
    padding: 10px 15px;
    background-color: #ff6600; /* Replace with your desired color */
    border: 1px solid #ff6600; /* Match the color to the button */
    border-radius: 0 4px 4px 0;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

/* Change button color on hover */
#searchsubmit:hover {
    background-color: #e65c00; /* Darker shade of the button color */
}

/* Adjust the input field and button on focus */
#s:focus {
    border-color: #ff6600; /* Matches the color of the button */
    box-shadow: 0px 0px 5px rgba(255, 102, 0, 0.5);
}