/* Search Bar Section Styling */
.search-section {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9; /* Light background for visibility */
    border: 1px solid #ccc;
    border-radius: 10px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto; /* Center the search section */
}

/* Styling for the input bar */
#search-bar {
    padding: 10px;
    width: 100%; /* Full width for responsiveness */
    max-width: 400px; /* Limit max width */
    font-size: 16px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
    text-align: center;
}

/* Button styling */
#search-button {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #4CAF50; /* Green background for the button */
    color: white;
    transition: background-color 0.3s ease;
}

/* Button hover effect */
#search-button:hover {
    background-color: #45a049;
}

/* Result text styling */
#search-result {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

/* Changelog Button Styling */
#changelog-button {
    padding: 8px 15px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #333;
    color: white;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 10px;
}

/* Changelog Button Styling */
#changelog-button {
    padding: 8px 15px; /* Smaller padding for the button */
    font-size: 14px; /* Smaller font size */
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: rgba(0, 0, 0, 0.6); /* Black background similar to feature buttons */
    color: white;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 10px;
    width: auto;
    text-align: center;
    display: inline-block;
    text-decoration: none; /* Remove underline from the anchor link */
}

/* Hover effect for Changelog Button */
#changelog-button:hover {
    background-color: rgba(0, 0, 0, 0.8); /* Darker black on hover */
    transform: scale(1.1); /* Slight scale-up effect on hover */
}


