/* --- Android App Finder Styles --- */

.android-finder-container {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px 25px;
    max-width: 600px;
    margin: 2em auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.finder-step {
    margin-bottom: 1.25em;
    transition: all 0.3s ease-in-out;
}

.finder-step.hidden {
    display: none;
}

.finder-sentence {
    font-size: 1.2em;
    color: #333;
    line-height: 1.6;
}

/* Style for the dropdowns to look like blanks */
.finder-blank .finder-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
    border-bottom: 2px dashed #999;
    font-size: 1em;
    font-family: inherit;
    color: #333;
    padding: 2px 5px;
    cursor: pointer;
    border-radius: 0;
    width: auto;
    display: inline-block;
}

.finder-blank .finder-select:focus {
    outline: none;
    border-bottom: 2px dashed #0073aa;
}

/* Style for the text after it's been "filled in" */
.finder-filled {
    font-weight: 600;
    color: #0056b3;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 2px;
}

/* Search Button Style */
.finder-button {
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    display: inline-block;
    text-align: center;
}

.finder-button:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.finder-button:active {
    transform: translateY(0);
}

/* Error Message Style */
.finder-error {
    color: #d9534f;
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    border-radius: 8px;
    padding: 10px 15px;
    margin-top: 15px;
}
