/* utilities.css */

.load-more {
    width: 100%;
    padding: 16px;
    margin: 20px 0 40px;
    border: 0;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    background: #111827;
    color: white;
    cursor: pointer;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: #111827;
    color: white;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    display: none;
    z-index: 999;
}

.back-to-top.show {
    display: block;
}

.add-home-tip {
    margin: 12px 0;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f3f4f6;
    color: #374151;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.add-home-tip button {
    border: none;
    background: #111827;
    color: white;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 13px;
    white-space: nowrap;
}