.properties-info-product-v2 h1{
text-align:left;
}
button#PDAM-continue-button {
    border: 1px solid #00ffff;
    background: #0f2a49;
    border-radius: 10px;
    padding: 15px;
    width: 200px;
    color: #fff;
    margin-bottom: 10px;
}
button#PDAM-continue-button:hover{
background: #00ffff;
color:#000;
}
        /* --- Main Container --- */
        .PDAM-search-wrapper {
            width: 100%;
            max-width: 28rem;
            margin: 0 auto;
            padding: 1rem;
        }

        h1 {
            font-size: 1.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        /* --- Search Input & Icons --- */
        .PDAM-input-container {
            position: relative;
			width: 100%;
			padding: 20px;
        }

        #PDAM-search-input {
            width: 100%;
    padding: 0.75rem 3rem 0.75rem 1rem;
    font-size: 1rem;
    color: #fff;
    background-color: #18191e;
    border: 1px solid #0f2a49;
    border-radius: 9999px;
    transition: box-shadow 0.3s;
        }

        #PDAM-search-input:focus {
            outline: none;
            box-shadow: 0 0 0 2px #3b82f6;
        }

        #PDAM-icon-container {
            position: absolute;
            top: 0;
            bottom: 0;
            right: 20px;
            display: flex;
            align-items: center;
            padding-right: 1rem;
            cursor: pointer;
        }

        #PDAM-icon-container svg {
            height: 1.5rem;
            width: 1.5rem;
            color: #6b7280;
        }

        /* --- Results Container --- */
        #PDAM-results-container {
    width: 90%;
    margin-bottom: 10px;
    margin-top: 0.5rem;
    background-color: #18191e;
    border: 1px solid #00ffff;
    border-radius: 0.5rem;
    overflow: hidden;
    max-height: 15rem;
    overflow-y: auto;
        }
	.PDAM-result-item:hover{
		background-color: #0d345c;
	cursor: pointer;
		}
        
        /* Utility untuk menyembunyikan elemen */
        .PDAM-hidden {
            display: none;
        }

        /* --- Individual Result Item --- */
        .PDAM-result-item {
            display: flex;
            align-items: center;
            padding: 10px;
            text-decoration: none;
            color: inherit;
            border-bottom: 1px solid #0f2a49;
            transition: background-color 0.2s;
        }

        .PDAM-result-item:last-child {
            border-bottom: none;
        }

        .PDAM-result-item .PDAM-text-content {
            flex-grow: 1;
        }
        
        .PDAM-result-item .PDAM-title {
            font-weight: 600;
            color: #ffffff;
        }

        .PDAM-result-item .PDAM-description {
            font-size: 0.875rem;
            color: #718096;
        }

        .PDAM-result-item .PDAM-result-image {
            width: 50px;
            height: 50px;
            object-fit: cover;
            border-radius: 0.375rem;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .PDAM-no-results {
            padding: 1rem;
            text-align: center;
           }