/* ===== place_sale.css ===== */
/* ===== place_sale.css ===== */

.place-sale {
    width: 90%;
    max-width: 1200px;
    margin: 30px auto 20px;
    text-align: center;
}

/* The main button */
.place-sale-button {
    display: inline-block;
    background: #cc5500; /*orange*/
    /*background: #2a9d8f;*/ /* teal green */
    color: white;
    font-weight: bold;
    font-size: 1.1em;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    cursor: pointer;
}

/* Hover and focus effects */
.place-sale-button:hover,
.place-sale-button:focus {
    background: #c55b40;
    /*background: #21867a;*/
    transform: translateY(-2px);
}

/* 🔹 Responsive adjustments */
@media (max-width: 768px) {
    .place-sale-button {
        display: block;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding: 14px 0;
        font-size: 1.1em;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .place-sale-button {
        max-width: 100%;
        font-size: 1em;
        padding: 14px 0;
        border-radius: 12px;
    }
}

