@import url('https://googleapis.com');

/* Base container updated with Montserrat - NO EXTRA SPACE */
.bsp-container {
    max-width: 600px;
    margin: 0;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    width: 100%;
}

.bsp-form {
    display: block !important;
}

.bsp-form h2 {
    margin-top: 0;
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.bsp-form p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

#bsp-search-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

#bsp-search-form input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    width: 100%;
}

#bsp-search-form input::placeholder {
    color: #999;
}

#bsp-search-form input:focus {
    outline: none;
    border-color: #FFC107;
    box-shadow: 0 0 5px rgba(255, 193, 7, 0.3);
}

.bsp-submit {
    padding: 14px 20px;
    background: #FFC107;
    color: #000;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.bsp-submit:hover {
    background: #FFB300;
}

.bsp-submit:active {
    background: #FFA000;
}

#bsp-loading {
    text-align: center;
    color: #666;
    padding: 20px;
    font-size: 16px;
}

#bsp-loading p {
    margin: 0;
}

#bsp-error {
    background: #ffebee;
    color: #c62828;
    padding: 15px;
    border-radius: 4px;
    border-left: 4px solid #c62828;
    font-size: 14px;
    margin-bottom: 15px;
}

.bsp-results {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 4px;
    border-left: 4px solid #4caf50;
}

.bsp-results h3 {
    margin: 0 0 15px 0;
    color: #2e7d32;
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
}

.bsp-results p {
    margin: 8px 0;
    color: #333;
    font-size: 14px;
}

.bsp-results strong {
    color: #1b5e20;
}

.bsp-blur-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #81c784;
}

.bsp-blur {
    background: #c8e6c9;
    padding: 4px 8px;
    border-radius: 3px;
    color: #1b5e20;
    font-weight: bold;
}

.bsp-verify {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background: #FFC107;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s ease;
    font-size: 14px;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.bsp-verify:hover {
    background: #FFB300;
    text-decoration: none;
    color: #000;
}

.bsp-verify:active {
    background: #FFA000;
}

.locate-business-btn {
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.locate-business-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .bsp-container {
        margin: 0 auto;
        padding: 20px;
        width: 100%;
    }
    
    .bsp-form h2 {
        font-size: 22px;
    }
    
    #bsp-search-form {
        gap: 12px;
    }
    
    .bsp-submit {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .bsp-results h3 {
        font-size: 18px;
    }
    
    .bsp-verify {
        display: block;
        text-align: center;
        width: 100%;
    }
}