
#cs-add-property-form {

    .cs-form-container {
        max-width: 60rem;
        padding: 16px 8px;
        margin: auto;
        text-align: left;
    }

    .cs-topper {
        font-size: var(--topperFontSize);
        line-height: 1.2em;
        text-transform: uppercase;
        text-align: inherit;
        letter-spacing: .1em;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 0.25rem;
        display: block;
        font-family: 'Roboto', serif;
    }

    .cs-form {
        max-width: 100%; 
        padding: 2rem;
        background-color: #f7f8f8;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .cs-form-row {
        display: flex;
        gap: 10px;
    }

    label {
        flex: auto;
    }

    .cs-input {
        font-size: 1rem;
        width: 100%;
        height: 3.5rem;
        padding: 0;
        padding-left: 1.5rem;
        color: var(--headerColor);
        background-color: #fff;
        border: none;
        box-sizing: border-box;
    }

    .cs-button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875em, 5.5vw, 3.5em);
        text-decoration: none;
        font-weight: 700;
        text-align: center;

        margin: 0;
        color: #fff;
        border: none;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        border-radius: 0.25rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
        transition: color 0.3s;
    }

    .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
    }

    .cs-button-solid:hover {
        color: #fff;
    }

    .cs-button-solid:hover:before {
        width: 100%;
    }

    .cs-submit {
        width: 100%;
        margin: 10px 0px;
        border-radius: 0;
    }

} 

.search-wrapper, #bids-table, .ck-editor-form, .form-button-styling {
    position: relative;

    .search-box, .form-input-box {
        box-sizing: border-box;
        font-size: 1rem;
        padding: 0.5rem;
        color: var(--headerColor);
        background-color: #fff;
        border: none;
        box-sizing: border-box;
    }

    .cs-form-container {
        max-width: 60rem;
        padding: 16px 8px;
        margin: auto;
        text-align: left;
    }

    .cs-form {
        max-width: 100%;
        padding: 0.5rem;
        background-color: #f7f8f8;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .cs-form-row {
        display: flex;
        gap: 10px;
    }

    .cs-button-solid {
        font-size: 1rem;
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: #fff;
        border: none;
        background-color: var(--primary);
        border-radius: 0.25rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
        transition: color 0.3s;
    }

    .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
    }

    .cs-button-solid:hover {
        color: #fff;
    }

    .cs-button-solid:hover:before {
        width: 100%;
    }

    .cs-submit {
        min-width: 5rem;
        padding: 0.5rem;
    }

    .suggestions {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 60%;
        border: none;
        z-index: 1000;
        max-height: 30rem;
        overflow-y: auto;
        box-sizing: border-box;
        font-size: 1rem;
        margin: 0rem 0.5rem 0.5rem 0.5rem;
        color: var(--headerColor);
        background-color: #fff;
    }

    .suggestion {
        padding: 0.5rem;
        cursor: pointer;
    }

    .suggestion:hover {
        background-color: #f2f2f2;
    }

    select {
        width: 60%;
        padding: 0.5rem;
        margin-right: 0.5rem;
    }
}

.non-form-gray-button {
    display: inline-block;
    padding: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    background: #ccc;
    cursor: pointer;
    border-radius: 0.25rem;
    border: none;
    box-sizing: border-box;
}




