.add-location-btn {
    position: absolute;
    bottom: 30px;
    left: 20px;
    width: 293px;
    background: #000000;
    color: white;
    border: 2px solid #000000;
    padding: 14px 20px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.2s ease;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-location-btn:hover {
    transform: none;
    background: white;
    color: #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Tablet Responsive (768px - 1024px) */
@media (max-width: 1024px) {
    .add-location-btn {
        bottom: 25px;
        left: 15px;
        width: 260px;
        padding: 12px 18px;
        font-size: 13px;
    }
}

/* Mobile Landscape and Tablets (481px - 768px) */
@media (max-width: 768px) {
    .add-location-btn {
        bottom: auto;
        top: 15px;
        right: 15px;
        left: auto;
        width: auto;
        min-width: 120px;
        padding: 10px 16px;
        font-size: 11px;
    }
}

/* Mobile Portrait (320px - 480px) */
@media (max-width: 480px) {
    .add-location-btn {
        top: 10px;
        right: 10px;
        min-width: 100px;
        padding: 8px 14px;
        font-size: 10px;
        letter-spacing: 0.3px;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .add-location-btn {
        top: 8px;
        right: 8px;
        min-width: 80px;
        padding: 8px 12px;
        font-size: 9px;
    }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .add-location-btn {
        top: 8px;
        right: 8px;
        padding: 6px 12px;
        font-size: 10px;
    }
}
