  @media (max-width: 768px) {
        .mobile-only {
            display: block;
            /* Show on mobile */
        }
    }

    @media (min-width: 769px) {
        .mobile-only {
            display: none;
            /* Hide on larger screens */
        }
    }

    .button-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 60px;
        gap: 10px;
        /* Adds spacing between buttons */
    }

    .btn {
        color: black;
        border: 1px solid black;
        border-radius: 5px;
        padding: 8px 12px;
        /* Slightly larger padding for better tap targets */
        font-size: 13px;
        /* Slightly larger text for readability */
        display: flex;
        align-items: center;
        gap: 5px;
        /* Space between text and icon */
        background-color: white;
        /* Ensures good contrast */
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .btn:hover {
        background-color: black;
        color: white;
    }

    .h-full {
        height: 0% !important;
    }

    input::placeholder {
        color: #0C2E60;

    }

    .ui-slider-horizontal .ui-slider-range {
        top: 0;
        height: 100%;
        background: #0C2E60;
    }

    .dsCounterInput__input[_ngcontent-sc158] {

        background: ghostwhite;
    }

    a:not([href]):not([tabindex]) {
        color: inherit;
        text-decoration: none;
        background: #0C2E60;
        color: white;

    }

    input#search {
        background: ghostwhite;
    }

    input[type="text"] {
        background: ghostwhite;
    }

    .dsCounterInput__button[_ngcontent-sc158] svg[_ngcontent-sc158] {
        fill: #ffffff;
    }