/* Style for the search panel */
    #rendarFilters {
        background-color: #58595B;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        max-width: 400px;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    /* Style for form labels */
    #rendarFilters label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        color: #FFFFFF;
    }

    /* Style for form select elements */
    #rendarFilters select {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #2A6375;
        border-radius: 5px;
        background-color: #FFFFFF;
        font-size: 16px;
        color: #231F20;
    }

    /* Style for submit button */
    #rendarFilters input[type="submit"] {
        width: 100%;
        padding: 10px;
        border: none;
        border-radius: 5px;
        background-color: #2A6375;
        color: #FFFFFF;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    /* Hover effect for submit button */
    #rendarFilters input[type="submit"]:hover {
        background-color: hsl(194, 47%, 50%);
    }