.angie-simple-search-container {
    display: flex;
    width: 100%;
}

.angie-simple-search {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%; /* Default width, can be controlled via settings */
    max-width: 400px; /* Sensible default max width */
    height: 45px;
    border-radius: 8px; /* Modern slightly rounded corners */
    background-color: #f5f5f5; /* Light grey background */
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.angie-simple-search:focus-within {
    border-color: #6EC1E4; /* Primary color */
    box-shadow: 0 0 0 2px rgba(110, 193, 228, 0.2);
    background-color: #ffffff;
}

.angie-simple-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 45px 0 15px; /* Space for icon */
    font-size: 16px;
    color: #FFFFFF;
    width: 100%;
    height: 100%;
    outline: none;
}

.angie-simple-search-input::-webkit-search-decoration,
.angie-simple-search-input::-webkit-search-cancel-button,
.angie-simple-search-input::-webkit-search-results-button,
.angie-simple-search-input::-webkit-search-results-decoration {
  display: none;
}

.angie-simple-search-submit {
    position: absolute;
    right: 0;
    top: 0;
    width: 45px;
    height: 45px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7A7A7A;
    transition: color 0.3s ease;
    padding: 0;
}

.angie-simple-search-submit:hover {
    color: #6EC1E4;
}

.angie-simple-search-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
