.button-link {
    padding: 10px 20px;
    background-color: #aaa;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none !important;
}

.button-link:hover {
    background-color: #999;
}

.full-width-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.error-message,
.property-details,
.property-map {
    margin-top: 40px;
}

.property-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: "slider text";
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
    background-color: #f1f1f1;
}

iframe {
    border-radius: 10px;
    overflow: hidden;
}

.property-slider {
    grid-area: slider;
    width: 100%;
    padding-top: 60%;
    position: relative;
    overflow: hidden;
    border-bottom-right-radius: 20px;
}

.property-text {
    flex: 1;
    grid-area: text;
    width: 100%;
    padding: 40px;
}

@media (max-width: 767px) {
    .property-row {
        grid-template-columns: 1fr;
        grid-template-areas:
            "slider"
            "text";
    }

    .property-slider,
    .property-text {
        width: 100%;
    }

    .property-text {
        padding: 20px 10%;
    }
}

sup {
    font-size: 60%;
    vertical-align: middle;
}

.slider-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center bottom;
    position: absolute;
    top: 0;
    left: 0;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    cursor: pointer;
    padding: 30px 5px;
    z-index: 1;
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.txt_suburb,
.txt_sold,
.property-price {
    text-transform: uppercase;
    font-weight: 800 !important;
}

.txt_sold {
    background-color: red;
    color: #fff;
}

.sold-text {
    display: inline-block;
    transform: rotate(-10deg);
}

.slider-arrow-left {
    left: 0;
    border-radius: 0px 5px 5px 0px;
}

.slider-arrow-right {
    right: 0;
    border-radius: 5px 0px 0px 5px;
}

.image-counter {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    padding: 5px 20px 5px 15px;
    font-size: 16px;
    z-index: 2;
    border-bottom-right-radius: 5px;
}

@media (max-width: 768px) {
    .property-slider,
    .property-text {
        flex: 1 0 100%;
    }
}

.combo-container {
    display: flex;
    flex-wrap: wrap;
}

.left-column {
    flex: 1;
}

.right-column {
    width: fit-content;
    padding: 40px 20px;
}

#calculator {
    width: 300px;
    padding: 16px;
    border-radius: 10px;
    background-color: #f1f1f1;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="number"] {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
}

button {
    padding: 10px 20px;
    background-color: #aaa;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #777;
}

#result {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .combo-container {
        flex-direction: column;
    }

    .left-column,
    .right-column {
        width: 100%;
        padding: 0px 0px 30px;
    }

    #calculator {
        width: 100%;
    }
}