/* Start Index Styles */

.search-icon-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.search-icon-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
}

.search-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #B69D63;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-icon-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Search popup */
.search-popup {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 300px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 1100;
    padding: 15px;
}

.search-popup-content {
    position: relative;
}

.popup-search-input {
    width: calc(100% - 60px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 16px;
}

.popup-search-submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #B69D63;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.popup-search-submit-btn:hover {
    background-color: #B69D63;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.d-none {
    display: none;
}

/* End Index Styles */

/* Start Search.php Styles */

#contact-form {
    position: relative;
    height: 100vh;
    padding-top: 50px; 
}

.container {
    position: relative;
}

.search-bar-form {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.input-group {
    display: flex;
    width: 100%;
    max-width: 400px; /* Set a fixed max width */
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.search-input {
    flex-grow: 1;
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 25px 0 0 25px;
    outline: none;
    transition: box-shadow 0.2s;
    color: black;
    background-color: white;
}

.search-input:focus {
    box-shadow: 0 0 5px #907c4e;
    border-color: #B69D63;
}

.search-btn {
    background-color: #B69D63;
    color: white;
    border: none;
    padding: 10px 20px 10px 10px;
    font-size: 16px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-btn:hover {
    background-color: #B69D63;
}

/* Hidden div styling */
#hiddenDiv {
    max-width: 400px; /* Set a fixed max width to match the search field */
    margin: 20px auto;
    padding: 10px;
    text-align: center;
    display: none;
    background-color: #F9F9F9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.left-align {
    text-align: left;
}

.bold-text {
    font-weight: 500;
}


#resultText{
    margin-bottom: 0;
    }

    
    
/* End Search.php Styles */

    .info-container {
        margin: 10px;
    }
    .info-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 5px;
        justify-content: flex-start; 
    }
    .info-label {
        font-weight: bold;
        width: 100px; 
        min-width: 100px;
        display: inline-block;
        text-align: left;
    }
    .info-value {
        word-wrap: break-word; 
        flex: 1; 
        text-align: left; 
    }

