.sdc-container {
    max-width: 600px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.sdc-container input {
    width: 100%;
    padding: 10px;
    margin-bottom: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.sdc-container button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: #8A54DD;
    color: white;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}
.sdc-container button:hover{
    background-color: #9252f5 !important;
	
}

.sdc-container button:hover {
    background-color: #005177;
}

#sdc-result {
    margin-top: 15px;
    font-weight: bold;
    font-size: 16px;
}

#sdc-map {
    border: 1px solid #ccc;
    border-radius: 6px;
}

.sdc-input-group {
    position: relative;
}

.sdc-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    z-index: 1000;
    max-height: 150px;
    overflow-y: auto;
}

.sdc-suggestion {
    padding: 8px 10px;
    cursor: pointer;
}

.sdc-suggestion:hover {
    background-color: #f0f0f0;
}
.sdc-container #sdc-result{
	color: #fff !important
}
