.provider-logo-placeholder {
    width: 60px;
    height: 60px;
    background-color: #f0f0f0;
    border-radius: 6px;
    margin-right: 10px;
}



#broadband-search-form {
    max-width: 600px;
    margin: 15px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

#address-input {
    width: 100%;
    padding: 50px;
    border: 1px solid #000;
    border-radius: 30px;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

#address-suggestions {
    width: 100%;
    background: white;
    
    list-style: none;
    max-height: 200px;
    overflow-y: auto;
    padding: 0;
    margin-top: 5px;
    border-radius: 5px;
    z-index: 9999;
    position: absolute;
    top: 60px;
}

#address-suggestions li {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}
#address-suggestions li:hover {
    background: #f3f3f3;
}

#broadband-search-form button {
    margin-top: 5px;
    padding: 12px 20px;
    background-color: #B1A41C;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
}

#broadband-search-form button:hover {
    background-color: #6ac248;
}

.broadband-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
	 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.broadband-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.card-left {
    display: flex;
    align-items: center;
	justify-items: center;
	
  
}

.provider-logo {
    width: 60px;
    height: auto;
    object-fit: contain;
	
}

.provider-info .provider-name {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.provider-info .provider-type {
    font-size: 14px;
    color: #666;
}

.card-middle {
    display: flex;
    gap: 40px;
    font-size: 14px;
    text-align: center;
}

.card-middle div span {
    font-weight: bold;
    font-size: 16px;
    display: block;
    margin-top: 4px;
}

.card-right .go-to-provider {
    background-color: #fdb913;
    color: #000;
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.card-right .go-to-provider:hover {
    background-color: #e6a800;
}

/* Google-like search input style */
#broadband-search-form {
    max-width: 600px;
    margin: 10px auto 10px;
    text-align: center;
    position: relative;
}

#address-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 40px;
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

#address-input:focus {
    border-color: #7ED957;
    box-shadow: 0 0 0 4px rgba(126, 217, 87, 0.2);
}

/* Animated placeholder using pseudo-element and JS typing */
#typing-placeholder {
    position: absolute;
    top: 16px;
    left: 25px;
    font-size: 14px;
    color: #B1A41C;
    pointer-events: none;
    font-style: italic;
    transition: opacity 0.3s ease;
}

#address-input:not(:placeholder-shown) + #typing-placeholder {
    opacity: 0;
}


/*Logo CSS*/

.provider-logo-placeholder {
    width: 100px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
	background: transparent;
}

.provider-logo-img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

.no-logo {
    font-size: 12px;
    color: transparent;
}

