/**
 * WM School Photos – Family search widget styles.
 *
 * Extracted from: Student Order Forms.css (search section).
 */

.wm-search-wrap {
    max-width: 640px;
    padding: 12px;
    border: 1px solid #3D3B39;
    border-radius: 12px;
    background-color: #fcfbfa;
}

.wm-row {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}

.wm-row input[type="text"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.wm-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wm-btn {
    padding: 10px 14px;
    border-radius: 8px;
    border: 0;
    background: #111;
    color: #fff;
    cursor: pointer;
}

.wm-btn:hover {
    background: #8C8C8C;
    color: #fff;
}

.wm-btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.wm-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-top-color: #111;
    border-radius: 50%;
    animation: wm-spin 0.8s linear infinite;
    display: none;
}

@keyframes wm-spin {
    to { transform: rotate(360deg); }
}

.wm-error {
    color: #b00020;
    font-size: 0.95rem;
    margin-top: 6px;
    display: none;
}

.wm-suggestions {
    margin-top: 12px;
    display: none;
}

.wm-suggestions h4 {
    margin: 8px 0 4px;
    font-size: 1rem;
}

.wm-suggestions ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.wm-suggestions li {
    margin: 3px 0;
}

.wm-suggestions a {
    text-decoration: underline;
}

.wm-hint {
    font-size: 0.9rem;
    color: #555;
    margin-top: 6px;
}
